Skip to content

Commit

Permalink
Update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kisielk committed Sep 11, 2018
1 parent a37e542 commit bd78e76
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 8 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ matrix:
- go: 1.7
- go: 1.8
- go: 1.9
- go: "1.10"
- go: "1.11"
- go: tip

script:
Expand Down
21 changes: 13 additions & 8 deletions expected.txt
Original file line number Diff line number Diff line change
@@ -1,17 +1,22 @@
digraph godep {
_0 [label="flag" style="filled" color="palegreen"];
_1 [label="fmt" style="filled" color="palegreen"];
_2 [label="github.com/kisielk/godepgraph" style="filled" color="paleturquoise"];

splines=ortho
nodesep=0.2
ranksep=0.6
node [shape="box",style="rounded,filled"]
_0 [label="flag" color="palegreen"];
_1 [label="fmt" color="palegreen"];
_2 [label="github.com/kisielk/godepgraph" color="paleturquoise"];
_2 -> _0;
_2 -> _1;
_2 -> _3;
_2 -> _4;
_2 -> _5;
_2 -> _6;
_2 -> _7;
_3 [label="go/build" style="filled" color="palegreen"];
_4 [label="log" style="filled" color="palegreen"];
_5 [label="os" style="filled" color="palegreen"];
_6 [label="sort" style="filled" color="palegreen"];
_7 [label="strings" style="filled" color="palegreen"];
_3 [label="go/build" color="palegreen"];
_4 [label="log" color="palegreen"];
_5 [label="os" color="palegreen"];
_6 [label="sort" color="palegreen"];
_7 [label="strings" color="palegreen"];
}

0 comments on commit bd78e76

Please sign in to comment.