summaryrefslogtreecommitdiffstats
path: root/share/extensions/tests/test_dimension.py
diff options
context:
space:
mode:
Diffstat (limited to 'share/extensions/tests/test_dimension.py')
-rw-r--r--share/extensions/tests/test_dimension.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/share/extensions/tests/test_dimension.py b/share/extensions/tests/test_dimension.py
new file mode 100644
index 0000000..34af0d3
--- /dev/null
+++ b/share/extensions/tests/test_dimension.py
@@ -0,0 +1,17 @@
+# coding=utf-8
+from dimension import Dimension
+from inkex.tester import ComparisonMixin, TestCase
+
+
+class TestDimensionBasic(ComparisonMixin, TestCase):
+ effect_class = Dimension
+ comparisons = [
+ ("--id=p1", "--id=r3", "--xoffset=100.0", "--yoffset=100.0"),
+ ("--id=p1", "--id=r3", "--type=visual", "--xoffset=100.0", "--yoffset=100.0"),
+ ]
+
+
+class TestDimensionMillimeters(ComparisonMixin, TestCase):
+ effect_class = Dimension
+ compare_file = "svg/css.svg"
+ comparisons = [("--id=circle1",)]