blob: 8a31fec985fea7cff9975d4f8c63ac2da6420503 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# coding=utf-8
#
# Unit test file for ../markers_strokepaint.py
# Revision history:
# * 2012-01-27 (jazzynico): checks defaulf parameters and file handling.
#
from markers_strokepaint import MarkersStrokePaint
from inkex.tester import ComparisonMixin, TestCase
class MarkerStrokePaintBasicTest(ComparisonMixin, TestCase):
effect_class = MarkersStrokePaint
compare_file = "svg/markers.svg"
comparisons = [
('--tab="object"', "--id=dimension", "--type=stroke"),
('--tab="custom"', "--id=dimension", "--type=stroke"),
]
def test_basic(self):
args = ["--id=dimension", self.data_file("svg", "markers.svg")]
eff = MarkersStrokePaint()
eff.run(args)
old_markers = eff.original_document.getroot().xpath("//svg:defs//svg:marker")
new_markers = eff.svg.xpath("//svg:defs//svg:marker")
self.assertEqual(len(old_markers), 2)
self.assertEqual(len(new_markers), 4)
|