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

18 lines
507 B
Python

# coding=utf-8
from path_envelope import Envelope
from inkex.tester import ComparisonMixin, TestCase
class PathEnvelopeTest(ComparisonMixin, TestCase):
"""Test envelope similar to perspective"""
effect_class = Envelope
comparisons = [("--id=text", "--id=envelope")]
compare_file = "svg/perspective.svg"
class PathEnvelopeGroupTest(ComparisonMixin, TestCase):
effect_class = Envelope
comparisons = [("--id=obj", "--id=envelope")]
compare_file = "svg/perspective_groups.svg"