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