summaryrefslogtreecommitdiffstats
path: root/share/extensions/tests/test_wireframe_sphere.py
blob: 428d50420f43e19f6d6b7e0744f3a77249e417dc (plain)
1
2
3
4
5
6
7
8
# coding=utf-8
from wireframe_sphere import WireframeSphere
from inkex.tester import ComparisonMixin, InkscapeExtensionTestMixin, TestCase
from inkex.tester.filters import CompareNumericFuzzy, CompareOrderIndependentStyle

class TestWireframeSphereBasic(ComparisonMixin, InkscapeExtensionTestMixin, TestCase):
    effect_class = WireframeSphere
    compare_filters = [CompareNumericFuzzy(), CompareOrderIndependentStyle()]