1
0
Fork 0
inkscape/share/extensions/tests/test_cgm_through.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

15 lines
486 B
Python

from cgm_input import CgmInput
from inkex.tester import ComparisonMixin, TestCase
from inkex.tester.filters import CompareOrderIndependentStyle
class TestCGMFileBasic(ComparisonMixin, TestCase):
"""Run-through tests of CGM"""
effect_class = CgmInput
compare_file = [
# Abydos.cgm from https://snisurset.net/code/abydos/samples.html, GPL2+
"cgm/abydos.cgm",
]
comparisons = [tuple()] # in mm
compare_filters = [CompareOrderIndependentStyle()]