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,15 @@
1
+digraph G {
2
+  bgcolor="yellow:blue" gradientangle=60 label="Graph"
3
+
4
+  subgraph cluster_1 {
5
+    style=filled fillcolor="green:magenta" label="Cluster" fontcolor="white"
6
+    node [style=filled]
7
+	n5 [ shape="box",fillcolor="antiquewhite:aquamarine" ]
8
+	n4 [ shape="ellipse",fillcolor="bisque4:blue2" ]
9
+	n3 [ shape="circle",fillcolor="cadetblue1:chocolate1" ]
10
+	n2 [ shape="diamond",fillcolor="crimson:cyan4" ]
11
+	n1 [ shape="triangle",fillcolor="deepskyblue2:firebrick" ]
12
+	n0 [ shape="pentagon",fillcolor="gray24:gray88" ]
13
+  }
14
+
15
+}