summaryrefslogtreecommitdiffstats
path: root/testfiles/cli_tests/testcases/regression-2602_script.py
diff options
context:
space:
mode:
Diffstat (limited to 'testfiles/cli_tests/testcases/regression-2602_script.py')
-rw-r--r--testfiles/cli_tests/testcases/regression-2602_script.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/testfiles/cli_tests/testcases/regression-2602_script.py b/testfiles/cli_tests/testcases/regression-2602_script.py
new file mode 100644
index 0000000..1a5480f
--- /dev/null
+++ b/testfiles/cli_tests/testcases/regression-2602_script.py
@@ -0,0 +1,10 @@
+from lxml import etree
+
+document = etree.parse("regression-2602_output.svg")
+
+parent = document.find('{http://www.w3.org/2000/svg}g[@id="parent"]')
+paths = parent.findall('{http://www.w3.org/2000/svg}path')
+
+assert parent.attrib.get("style") == "fill:#0000ff"
+assert paths[0].attrib.get("style") == "fill:#ff0000"
+assert paths[1].attrib.get("style") is None