summaryrefslogtreecommitdiffstats
path: root/share/extensions/tests/test_pathalongpath.py
diff options
context:
space:
mode:
Diffstat (limited to 'share/extensions/tests/test_pathalongpath.py')
-rw-r--r--share/extensions/tests/test_pathalongpath.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/share/extensions/tests/test_pathalongpath.py b/share/extensions/tests/test_pathalongpath.py
new file mode 100644
index 0000000..af442e8
--- /dev/null
+++ b/share/extensions/tests/test_pathalongpath.py
@@ -0,0 +1,9 @@
+# coding=utf-8
+from pathalongpath import PathAlongPath
+from inkex.tester import ComparisonMixin, TestCase
+from inkex.tester.filters import CompareNumericFuzzy, CompareWithPathSpace
+
+class TestPathAlongPathBasic(ComparisonMixin, TestCase):
+ compare_filters = [CompareNumericFuzzy(), CompareWithPathSpace()]
+ comparisons = [('--copymode=Single', '--id=p1', '--id=p2')]
+ effect_class = PathAlongPath