Skip to content
This repository has been archived by the owner on Jul 17, 2024. It is now read-only.

Commit

Permalink
Add test for previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
khaledhosny committed Feb 20, 2019
1 parent 0f7ec48 commit b5b597a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions tests/integration/test_hint.py
Original file line number Diff line number Diff line change
Expand Up @@ -332,3 +332,14 @@ def test_decimals_otf(tmpdir):

assert differ([str(tmpdir / basename(otf)) + ".xml",
str(tmpdir / basename(out)) + ".xml"])


def test_layers(tmpdir):
path = "%s/dummy/layers.ufo" % DATA_DIR
out = str(tmpdir / basename(path)) + ".out"
options = Options(path, out)
options.allow_no_blues = True

hintFiles(options)

assert differ([path, out])

0 comments on commit b5b597a

Please sign in to comment.