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,8 @@
1
+digraph G {
2
+	subgraph cluster_c0 {a0 -> a1 -> a2 -> a3;}
3
+	subgraph cluster_c1 {b0 -> b1 -> b2 -> b3;}
4
+	x -> a0;
5
+	x -> b0;
6
+	a1 -> b3;
7
+	b3 -> a1;
8
+}