summaryrefslogtreecommitdiff
path: root/sandbox/rst2graph/tests/variantsDot/expected/selectTable.gv
blob: c8b247ee41720422970032e5bf6db3a9af0b37b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
digraph "input/selectTable.rst" {
	node [label="\N"];
	first	 [label=First];
	first -> one;
	one	 [label=One];
	second	 [label=Second];
	second -> first;
	second -> second;
	third	 [label=Third];
	three	 [label=Three];
	three -> one;
	three -> two;
	two	 [label=Two];
	two -> one;
}