summaryrefslogtreecommitdiffstats
path: root/share/extensions/tests/test_interp.py
blob: b9e187678e105e2e4668f6dd6bbb216781ebfbfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# coding=utf-8
from interp import Interp
from inkex.tester import ComparisonMixin, TestCase
from inkex.tester.filters import CompareNumericFuzzy

class InterpBasicTest(ComparisonMixin, TestCase):
    effect_class = Interp
    comparisons = [
        ('--id=path1', '--id=path2', '--id=path3', '--id=path4', '--id=path5',
         '--id=path6', '--id=path7', '--id=path8', '--id=path9', '--id=path10'),
        ('--id=path1', '--id=path2', '--id=path3', '--id=path4', '--id=path5',
         '--id=path6', '--id=path7', '--id=path8', '--id=path9', '--id=path10', '--method=2')
    ]
    compare_filters = [CompareNumericFuzzy()]
    compare_file = 'svg/interp_shapes.svg'