blob: 9131293f4a1400626ed45f10ac69c7ec7a4617c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# coding=utf-8
from render_gears import Gears
from inkex.tester import ComparisonMixin, InkscapeExtensionTestMixin, TestCase
from inkex.tester.filters import CompareOrderIndependentStyle
class GearsBasicTest(ComparisonMixin, InkscapeExtensionTestMixin, TestCase):
effect_class = Gears
compare_filters = [CompareOrderIndependentStyle()]
comparisons = [
("--centerdiameter=10.0",),
("--id=p1", "--id=r3", "--centerdiameter=10.0"),
]
|