Print out some paths to see that they're sane

pull/58/head
Michael X. Grey 2018-05-10 17:06:16 -07:00
parent 457a054fb8
commit 1c8ca10f73
1 changed files with 6 additions and 1 deletions

View File

@ -10,5 +10,10 @@ class TestGroups(unittest.TestCase):
doc = Document(join(dirname(__file__), 'groups.svg'))
result = doc.flatten_all_paths()
print('\nnumber of paths: '+str(len(result)))
print('\nNumber of paths: '+str(len(result)))
self.assertGreater(len(result), 0)
for svg_path in result:
print(svg_path.path)
# TODO: Test that the paths were transformed as expected