summaryrefslogtreecommitdiffstats
path: root/share/extensions/tests/test_straightseg.py
blob: 86c6993482d612f4660e4c952ea7636905918d12 (plain)
1
2
3
4
5
6
7
8
# coding=utf-8
from straightseg import SegmentStraightener
from inkex.tester import ComparisonMixin, InkscapeExtensionTestMixin, TestCase
from inkex.tester.filters import CompareNumericFuzzy, CompareWithPathSpace

class SegmentStraightenerBasicTest(ComparisonMixin, InkscapeExtensionTestMixin, TestCase):
    effect_class = SegmentStraightener
    compare_filters = [CompareNumericFuzzy(), CompareWithPathSpace()]