1
0
Fork 0
inkscape/share/extensions/tests/test_dxf12_outlines.py
Daniel Baumann 02d935e272
Adding upstream version 1.4.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 23:40:13 +02:00

17 lines
513 B
Python

# coding=utf-8
from dxf12_outlines import DxfTwelve
from inkex.tester import ComparisonMixin, TestCase
from inkex.tester.filters import WindowsTextCompat
class TestDXF12OutlinesBasic(ComparisonMixin, TestCase):
compare_file = [
"svg/shapes.svg",
"svg/preserved-transforms.svg",
"svg/dxf_nested_transforms.svg",
"svg/clips_and_masks.svg",
"svg/scale_not_unity.svg",
]
comparisons = [()]
effect_class = DxfTwelve
compare_filters = [WindowsTextCompat()]