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,41 @@
1
+digraph G {
2
+
3
+  URL="http://www.graphviz.org/doc/info/output.html"
4
+  label=output
5
+  lang [ URL="http://www.graphviz.org/doc/info/lang.html" ]
6
+   colors [
7
+  style=filled
8
+  fillcolor=lightblue
9
+  URL="http://www.graphviz.org/doc/info/output.html"
10
+label=<<table href="http://www.graphviz.org/doc/info/colors.html"><tr><td BGCOLOR="green">colors</td></tr></table>>];
11
+
12
+  subgraph cluster0 {
13
+     style=filled
14
+     fillcolor=yellow
15
+     URL="http://www.graphviz.org/doc/info/arrows.html"
16
+     label=arrows
17
+     command [ style=filled
18
+        fillcolor=grey
19
+        URL="http://www.graphviz.org/doc/info/command.html" ]
20
+     name [ URL="\G \N"]
21
+  }
22
+  lang ->  command [ URL="http://www.graphviz.org/doc/info/shapes.html" 
23
+  ]
24
+  lang -> colors [ URL="\E" edgetooltip=self ]
25
+  lang -> size [ URL="headurl" edgetooltip=headurl headlabel=size headURL=headsize]
26
+  word -> size [ URL="tailurl" taillabel=size tailURL=tailsize]
27
+  word -> garf [ URL="labelurl" label=garf labelURL=garf]
28
+  line -> all [ 
29
+    URL="labelurl" 
30
+    edgeurl="edgeurl" 
31
+    edgetooltip=edgetooltip
32
+    label=garf 
33
+    labelURL=garf
34
+    headURL=headURL
35
+    headlabel=headlabel
36
+    headtooltip=headtooltip
37
+    tailURL=tailURL
38
+    taillabel=taillabel
39
+    tailtooltip=tailtooltip
40
+  ]
41
+}