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

14 lines
433 B
Python

# coding=utf-8
from render_barcode_datamatrix import DataMatrix
from inkex.tester import ComparisonMixin, TestCase
class TestDataMatrixBasic(ComparisonMixin, TestCase):
effect_class = DataMatrix
compare_file = "svg/empty.svg"
comparisons = [
("--symbol=sq10",),
("--symbol=sq96", "--text=Sunshine"),
("--symbol=sq144", "--text=HelloTest"),
("--symbol=rect8x32", "--text=1234Foo"),
]