summaryrefslogtreecommitdiffstats
path: root/share/extensions/tests/test_template_seamless_pattern.py
diff options
context:
space:
mode:
Diffstat (limited to 'share/extensions/tests/test_template_seamless_pattern.py')
-rw-r--r--share/extensions/tests/test_template_seamless_pattern.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/share/extensions/tests/test_template_seamless_pattern.py b/share/extensions/tests/test_template_seamless_pattern.py
new file mode 100644
index 0000000..4701939
--- /dev/null
+++ b/share/extensions/tests/test_template_seamless_pattern.py
@@ -0,0 +1,9 @@
+# coding=utf-8
+from template_seamless_pattern import SeamlessPattern
+from inkex.tester import ComparisonMixin, TestCase
+from inkex.tester.filters import CompareNumericFuzzy
+
+class SeamlessPatternBasicTest(ComparisonMixin, TestCase):
+ effect_class = SeamlessPattern
+ compare_filters = [CompareNumericFuzzy()]
+ comparisons = [('--width=100', '--height=100')]