diff --git a/test/test_groups.py b/test/test_groups.py index c281511..143dbf6 100644 --- a/test/test_groups.py +++ b/test/test_groups.py @@ -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