From 1c8ca10f73e242a4c31bfdab3152c2ebddb01968 Mon Sep 17 00:00:00 2001 From: "Michael X. Grey" Date: Thu, 10 May 2018 17:06:16 -0700 Subject: [PATCH] Print out some paths to see that they're sane --- test/test_groups.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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