blob: 743f65ed78802a188008a4db8f75a754bd625989 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# coding=utf-8
from svgfont2layers import SvgFontToLayers
from inkex.tester import ComparisonMixin, TestCase
class TestSVGFont2LayersBasic(ComparisonMixin, TestCase):
effect_class = SvgFontToLayers
compare_file = 'svg/font.svg'
comparisons = [
('--count=3',)
]
|