1# coding=utf-8
2from rubberstretch import RubberStretch
3from inkex.tester import ComparisonMixin, InkscapeExtensionTestMixin, TestCase
4
5class TestRubberStretchBasic(ComparisonMixin, InkscapeExtensionTestMixin, TestCase):
6    effect_class = RubberStretch
7    compare_file = "svg/rubber-stretch-test.svg"
8    comparisons = [('--id=path3997', '--ratio=50', '--curve=0'),
9                   ('--id=path3997', '--ratio=0', '--curve=50'),
10                   ('--id=path3997', '--ratio=25', '--curve=25')]
11
12
13