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,16 @@
1
+digraph G {
2
+  label = "label demo";
3
+  subgraph cluster0 {
4
+    a;
5
+    b;
6
+    a->b;
7
+    label = "cluster0";
8
+    labelloc="bottom";
9
+  }
10
+  subgraph cluster1 {
11
+    c;
12
+    d;
13
+    c->d;
14
+    label = "cluster1";
15
+  }
16
+}