Skip to content

Commit

Permalink
[instancer] Add test for parseLimits with default value
Browse files Browse the repository at this point in the history
  • Loading branch information
behdad committed Aug 17, 2022
1 parent df587bd commit 6bab8f3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Tests/varLib/instancer/instancer_test.py
Expand Up @@ -1892,6 +1892,7 @@ def test_limitFeatureVariationConditionRange(oldRange, newLimit, expected):
[
(["wght=400", "wdth=100"], {"wght": 400, "wdth": 100}),
(["wght=400:900"], {"wght": (400, 900)}),
(["wght=400:700:900"], {"wght": (400, 700, 900)}),
(["slnt=11.4"], {"slnt": pytest.approx(11.399994)}),
(["ABCD=drop"], {"ABCD": None}),
],
Expand Down

0 comments on commit 6bab8f3

Please sign in to comment.