blob: d6b2a212af59c10a3ff1ccd82cbd720089b1cb90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# coding=utf-8
"""
Unit test file for ../scribus_pdf_export.py
"""
from scribus_export_pdf import Scribus
from inkex.tester import ComparisonMixin, TestCase
class ScribusBasicTest(ComparisonMixin, TestCase):
"""Test the Scribus PDF file saving functionality"""
effect_class = Scribus
compare_file = "svg/shapes_cmyk.svg"
comparisons = [("--pdf-version=13", "--bleed=0")]
|