summaryrefslogtreecommitdiffstats
path: root/share/extensions/tests/test_lorem_ipsum.py
diff options
context:
space:
mode:
Diffstat (limited to 'share/extensions/tests/test_lorem_ipsum.py')
-rw-r--r--share/extensions/tests/test_lorem_ipsum.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/share/extensions/tests/test_lorem_ipsum.py b/share/extensions/tests/test_lorem_ipsum.py
new file mode 100644
index 0000000..5147114
--- /dev/null
+++ b/share/extensions/tests/test_lorem_ipsum.py
@@ -0,0 +1,21 @@
+# coding=utf-8
+from lorem_ipsum import LoremIpsum
+from inkex.tester import ComparisonMixin, TestCase
+
+
+class LorumIpsumBasicTest(ComparisonMixin, TestCase):
+ effect_class = LoremIpsum
+ compare_file = "svg/shapes.svg"
+ comparisons = [
+ (),
+ ["--svg2=false"],
+ ["--id=r1"],
+ ["--id=r1", "--svg2=false"],
+ ["--id=t4"],
+ ]
+
+
+class LoremIpsumMillimeters(ComparisonMixin, TestCase):
+ effect_class = LoremIpsum
+ compare_file = "svg/complextransform.test.svg"
+ comparisons = [("--svg2=true",)]