1
0
Fork 0
inkscape/share/extensions/tests/test_perspective.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
492 B
Python

#!/usr/bin/env python3
# coding=utf-8
from perspective import Perspective
from inkex.tester import ComparisonMixin, TestCase
class PerspectiveBasicTest(ComparisonMixin, TestCase):
effect_class = Perspective
comparisons = [("--id=text", "--id=envelope")]
compare_file = "svg/perspective.svg"
class PerspectiveGroupTest(ComparisonMixin, TestCase):
effect_class = Perspective
comparisons = [("--id=obj", "--id=envelope")]
compare_file = "svg/perspective_groups.svg"