blob: 7c3bfc18b59bc8aa2f6fcec8aacf7e323ecfebf1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# coding=utf-8
import sys
import pytest
from print_win32_vector import PrintWin32Vector
from inkex.tester import InkscapeExtensionTestMixin, TestCase
@pytest.mark.skipif(sys.platform != 'win32', reason="Only runs on windows")
class TestPrintWin32VectorBasic(InkscapeExtensionTestMixin, TestCase):
effect_class = PrintWin32Vector
|