Skip to content

Commit

Permalink
add two more gv tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pmendes committed Jun 17, 2024
1 parent 5a9656a commit 9f227d4
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
14 changes: 14 additions & 0 deletions tests/sources/test10_8.gv
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
digraph G{
ordering=out;
{rank=same;"1";"2"};
"1"->"2";
{rank=same;"4";"5"};
"4"->"5";
"7"->"5";
"7"->"4";
"6"->"1";
"3"->"6";
"6"->"4";
"3"->"8";
}

25 changes: 25 additions & 0 deletions tests/sources/test11_12.gv
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
digraph G {
size="6,6";
1 -> 2 -> 3;

subgraph cluster0 {
4 -> 5;
4 -> 6;
}

subgraph cluster1 {
7 -> 8;
7 -> 9;
}

subgraph cluster2 {
10 -> 11;
10 -> 12;
}

1 -> 4;
2 -> 4;
2 -> 5;
1 -> 12;
3 -> 11;
}

0 comments on commit 9f227d4

Please sign in to comment.