summaryrefslogtreecommitdiffstats
path: root/share/extensions/tests/test_text_extract.py
blob: bdf2a6e693ee5ed438634f6f838a23aa903fd19d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# coding=utf-8
from inkex.tester import ComparisonMixin, TestCase
from text_extract import Extract
from inkex.tester.filters import WindowsTextCompat


class TestExtractBasic(ComparisonMixin, TestCase):
    effect_class = Extract
    stderr_output = True
    comparisons = [
        ("--direction=tb", "--xanchor=center_x", "--yanchor=center_y"),
        ("--direction=bt", "--xanchor=center_x", "--yanchor=center_y"),
        ("--direction=lr", "--xanchor=center_x", "--yanchor=center_y"),
        ("--direction=rl", "--xanchor=center_x", "--yanchor=center_y"),
    ]
    compare_filters = [WindowsTextCompat()]