summaryrefslogtreecommitdiffstats
path: root/share/extensions/tests/test_grid_polar.py
blob: 3a5245233266fd7a06ce6562a0098fbbeaf66240 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# coding=utf-8
from grid_polar import GridPolar
from inkex.tester import ComparisonMixin, InkscapeExtensionTestMixin, TestCase
from inkex.tester.filters import CompareOrderIndependentStyle


class GridPolarBasicTest(ComparisonMixin, InkscapeExtensionTestMixin, TestCase):
    compare_filters = [CompareOrderIndependentStyle()]
    effect_class = GridPolar
    comparisons = [
        ("--a_subdivs_cent=1", "--a_labels=deg"),
        ("--id=p1", "--id=r3", "--a_subdivs_cent=1", "--a_labels=deg"),
    ]