summaryrefslogtreecommitdiffstats
path: root/share/extensions/tests/test_foldablebox.py
blob: 0ef7ac5629b6d44a005e56743fdf7d9cbf015c52 (plain)
1
2
3
4
5
6
7
8
9
10
11
# coding=utf-8
from foldablebox import FoldableBox
from inkex.tester import ComparisonMixin, TestCase

class FoldableBoxArguments(ComparisonMixin, TestCase):
    effect_class = FoldableBox
    compare_file = 'svg/empty.svg'
    comparisons = [
        ('--width=20', '--height=20', '--depth=2.2'),
        ('--proportion=0.5', '--guide=true'),
    ]