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,26 @@
1
+digraph G {
2
+  node [shape=box]
3
+  TOP -> {rank=same a b c d e f } -> BOTTOM
4
+  b [shape=record, label="<left>left |{<up>up | <middle>middle | <down>down } | right"]
5
+  d [shape=none 
6
+    label=<<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="0" CELLBORDER="1">
7
+    <TR>
8
+    <TD PORT="htmlleft">LEFT</TD>
9
+    <TD>MIDDLE</TD>
10
+    <TD BORDER="0">
11
+      <TABLE PORT="inner" BORDER="0" CELLPADDING="0" CELLSPACING="0" CELLBORDER="1">
12
+        <TR><TD>RIGHTTOP</TD></TR>
13
+        <TR><TD>RIGHTBOTTOM</TD></TR>
14
+      </TABLE>
15
+    </TD>
16
+    </TR>
17
+  </TABLE>> ]
18
+  A:s -> a:n
19
+  a:w ->f:e
20
+  f:n -> d:htmlleft
21
+  a:ne -> d:inner:n
22
+  a:s ->b:down:se
23
+  a:w -> B:e
24
+  D -> b:left
25
+  C -> b:middle:e
26
+}