1
0
Fork 0
inkscape/share/extensions/tests/test_rubberstretch.py
Daniel Baumann 02d935e272
Adding upstream version 1.4.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 23:40:13 +02:00

13 lines
492 B
Python

# coding=utf-8
from rubberstretch import RubberStretch
from inkex.tester import ComparisonMixin, InkscapeExtensionTestMixin, TestCase
class TestRubberStretchBasic(ComparisonMixin, InkscapeExtensionTestMixin, TestCase):
effect_class = RubberStretch
compare_file = "svg/rubber-stretch-test.svg"
comparisons = [
("--id=path3997", "--ratio=50", "--curve=0"),
("--id=path3997", "--ratio=0", "--curve=50"),
("--id=path3997", "--ratio=25", "--curve=25"),
]