Browse code

tests: Import Graphviz tests.

Jose Fonseca authored on 13/02/2016 23:53:31
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,17 @@
1
+digraph G {
2
+	rankdir=LR;
3
+	node [shape=record];
4
+	a [ label ="<bala> Graphs can\lbe fun\l|<f1> mid|<f2> right\r"];
5
+	b [ label ="<left>   |<mid> b |   " ];
6
+	c [ label ="<p1>   | c |<p2>   " ];
7
+	x [ label ="<p1>   | x |<p2>   " ];
8
+	y [ label ="<p1>   | y |<p2>   " ];
9
+	z [ label ="   | z |<p2>   " ];
10
+	a:bala -> b:left;
11
+	a:f1 -> d;
12
+	a:f2 -> y:"p1";
13
+	c:"p1" -> d;
14
+	b:mid -> x:"p1";
15
+	c:"p2" -> y:"p2";
16
+	b:left -> z:"p2";
17
+}