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

30 lines
946 B
Python

# coding=utf-8
from long_shadow import LongShadow
from inkex.tester import ComparisonMixin, TestCase
from inkex.tester.filters import CompareNumericFuzzy, CompareWithPathSpace
class MotionBasicTest(ComparisonMixin, TestCase):
effect_class = LongShadow
compare_filters = [CompareNumericFuzzy(), CompareWithPathSpace()]
comparisons = [
("--id=c3", "--id=p2"),
]
class MotionSubpathsTest(ComparisonMixin, TestCase):
"""Tests the motion extension on paths with (a) transforms and (b) multiple closed subpaths
(b): see https://gitlab.com/inkscape/extensions/-/issues/266"""
compare_file = "svg/motion_tests.svg"
effect_class = LongShadow
compare_filters = [CompareNumericFuzzy(), CompareWithPathSpace()]
comparisons = [
(
"--magnitude=2",
"--angle=45",
"--fillwithstroke=True",
"--id=path23053",
"--id=path28636",
)
]