blob: 48990d40e00cec941dd7f6871930277214c87e1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# 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", "--unit=cm"),
("--proportion=0.5", "--guide=true", "--unit=cm"),
]
|