summaryrefslogtreecommitdiffstats
path: root/share/extensions/tests/test_jessyink_effects.py
diff options
context:
space:
mode:
Diffstat (limited to 'share/extensions/tests/test_jessyink_effects.py')
-rw-r--r--share/extensions/tests/test_jessyink_effects.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/share/extensions/tests/test_jessyink_effects.py b/share/extensions/tests/test_jessyink_effects.py
new file mode 100644
index 0000000..23ffc1a
--- /dev/null
+++ b/share/extensions/tests/test_jessyink_effects.py
@@ -0,0 +1,12 @@
+#!/usr/bin/en
+# coding=utf-8
+from jessyink_effects import JessyinkEffects
+from inkex.tester import ComparisonMixin, TestCase
+
+class JessyInkEffectsTest(ComparisonMixin, TestCase):
+ effect_class = JessyinkEffects
+ comparisons = [
+ ('--id=p1', '--id=r3'),
+ ('--id=p1', '--effectIn=fade', '--effectOut=pop'),
+ ]
+ python3_only = True