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