-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(package): main points to non existant package
"bin" mode was failing for similar reason Added simple test for CLI Add -v option (GraphViz version) for CLI Fixes #114 Signed-off-by: GordonSmith <[email protected]>
- Loading branch information
1 parent
2973874
commit 0128401
Showing
4 changed files
with
102 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
digraph G { | ||
node [shape=rect]; | ||
|
||
subgraph cluster_0 { | ||
style=filled; | ||
color=lightgrey; | ||
node [style=filled,color=white]; | ||
a0 -> a1 -> a2 -> a3; | ||
label = "process #1"; | ||
} | ||
|
||
subgraph cluster_1 { | ||
node [style=filled]; | ||
b0 -> b1 -> b2 -> b3; | ||
label = "process #2"; | ||
color=blue | ||
} | ||
|
||
start -> a0; | ||
start -> b0; | ||
a1 -> b3; | ||
b2 -> a3; | ||
a3 -> a0; | ||
a3 -> end; | ||
b3 -> end; | ||
|
||
start [shape=Mdiamond]; | ||
end [shape=Msquare]; | ||
} | ||
`; | ||
|
||
export const badDot = ` | ||
digraph G { | ||
node [shape=rect]; | ||
|
||
subgraph cluster_0 { | ||
style=filled; | ||
color=lightgrey; | ||
node [style=filled,color=white]; | ||
a0 -> a1 -> a2 -> a3; | ||
label = "process #1"; | ||
] | ||
|
||
subgraph cluster_1 { | ||
node [style=filled]; | ||
b0 -> b1 -> b2 -> b3; | ||
label = "process #2"; | ||
color=blue | ||
} | ||
|
||
start -> a0; | ||
start -> b0; | ||
a1 -> b3; | ||
b2 -> a3; | ||
a3 -> a0; | ||
a3 -> end; | ||
b3 -> end; | ||
|
||
start [shape=Mdiamond]; | ||
end [shape=Msquare]; | ||
} |