blob: 590c570ac257f3e3ce6e2ca11365f3f9a928ae4e (
plain)
1
2
3
4
5
6
7
|
# coding=utf-8
from rubberstretch import RubberStretch
from inkex.tester import ComparisonMixin, InkscapeExtensionTestMixin, TestCase
class TestRubberStretchBasic(ComparisonMixin, InkscapeExtensionTestMixin, TestCase):
effect_class = RubberStretch
comparisons = [('--id=p1', '--id=r3')]
|