Print out some paths to see that they're sane
parent
457a054fb8
commit
1c8ca10f73
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue