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

class TestUngroupBasic(ComparisonMixin, TestCase):
    effect_class = UngroupDeep
    compare_filters = [CompareOrderIndependentStyle()]
    comparisons = [
        (),
        ('--id=layer2',)
    ]