diff options
Diffstat (limited to 'share/extensions/tests/test_restack.py')
-rw-r--r-- | share/extensions/tests/test_restack.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/share/extensions/tests/test_restack.py b/share/extensions/tests/test_restack.py new file mode 100644 index 0000000..9dfd809 --- /dev/null +++ b/share/extensions/tests/test_restack.py @@ -0,0 +1,10 @@ +# coding=utf-8 +from restack import Restack +from inkex.tester import ComparisonMixin, TestCase + +class RestackBasicTest(ComparisonMixin, TestCase): + effect_class = Restack + comparisons = [ + ('--tab=positional', '--id=p1', '--id=r3'), + ('--tab=z_order', '--id=p1', '--id=r3'), + ] |