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,34 @@
1
+digraph G {
2
+  subgraph cluster0 {
3
+    fillcolor="blue:red"
4
+	style="filled,rounded"
5
+    0
6
+  }
7
+  subgraph cluster1 {
8
+    peripheries=0
9
+    fillcolor="blue:red"
10
+	style=filled
11
+    1
12
+  }
13
+  subgraph cluster2 {
14
+    fillcolor="blue"
15
+	style=filled
16
+    2
17
+  }
18
+  subgraph cluster3 {
19
+    peripheries=0
20
+    fillcolor="red"
21
+	style="filled,rounded"
22
+    3
23
+  }
24
+  subgraph cluster4 {
25
+    peripheries=0
26
+    bgcolor="red:blue"
27
+    4
28
+  }
29
+  subgraph cluster5 {
30
+    bgcolor="red:blue"
31
+    5
32
+  }
33
+  0 -> 1 -> 2 -> 3 -> 4
34
+}