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