Browse code

Add test for issue 71.

https://github.com/jrfonseca/xdot.py/issues/71
https://github.com/jrfonseca/xdot.py/pull/81

Jose Fonseca authored on 20/07/2020 10:52:05
Showing 4 changed files

1 1
similarity index 100%
2 2
rename from tests/issue65.dot
3 3
rename to tests/issue_65.dot
4 4
similarity index 100%
5 5
rename from tests/issue68.dot
6 6
rename to tests/issue_68.dot
7 7
similarity index 100%
8 8
rename from tests/issue69.dot
9 9
rename to tests/issue_69.dot
10 10
new file mode 100644
... ...
@@ -0,0 +1,17 @@
1
+digraph {
2
+   Src [tooltip="Source"];
3
+   Dst [tooltip="Destination"];
4
+   Src -> Dst [
5
+      headlabel="H"
6
+      headtooltip="Head"
7
+      headURL="headURL"
8
+      edgelabel="E"
9
+      edgetooltip="Edge"
10
+      edgeURL="edgeURL"
11
+      taillabel="T"
12
+      tailtooltip="Tail"
13
+      tailURL="tailURL"
14
+      label="L"
15
+      labeltooltip="Label"
16
+   ]
17
+}