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,24 @@
1
+digraph G {
2
+  graph [label="下駄配列の派生図"]
3
+
4
+  getas [label = "下駄配列"];
5
+  new_getas  [label = "新下駄配列"];
6
+  getas_in_fine_weather [label = "日和下駄配列"];
7
+  black_lacquered_getas [label = "黒塗り下駄配列"];
8
+  black_lacquered_getas_made_of_paulownia [label = "黒塗り桐下駄配列"];
9
+  lacquered_getas [label = "塗り下駄配列"];
10
+  new_JIS_getas [label = "新JIS下駄配列"];
11
+
12
+  getas -> {
13
+    getas_in_fine_weather
14
+    lacquered_getas
15
+    new_JIS_getas new_getas
16
+    lacquered_getas
17
+  };
18
+
19
+  lacquered_getas -> black_lacquered_getas;
20
+  black_lacquered_getas -> black_lacquered_getas_made_of_paulownia;
21
+  black_lacquered_getas_made_of_paulownia -> black_lacquered_getas;
22
+
23
+  black_lacquered_getas -> getas_in_fine_weather [style = dotted];
24
+}