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,22 @@
1
+digraph G {
2
+	subgraph cluster_0 {
3
+		label = "hello world";
4
+		a -> b;
5
+		a -> c;
6
+		color = hot_pink;
7
+	}
8
+
9
+	subgraph cluster_1 {
10
+		label = "MSDOT";
11
+		style= "dashed";
12
+		color=purple;
13
+		x -> y;
14
+		x -> z;
15
+		y -> z;
16
+		y -> q;
17
+	}
18
+
19
+	top -> a;
20
+	top -> y;
21
+	y -> b;
22
+}