lib/dot: do not show graph by default in examples so we can test them
authorAlexandre Terrasa <alexandre@moz-code.org>
Fri, 9 Jun 2017 17:22:21 +0000 (13:22 -0400)
committerAlexandre Terrasa <alexandre@moz-code.org>
Fri, 9 Jun 2017 17:22:21 +0000 (13:22 -0400)
Signed-off-by: Alexandre Terrasa <alexandre@moz-code.org>

lib/dot/examples/clusters.nit

index 993d3ca..2361e0d 100644 (file)
@@ -66,7 +66,7 @@ graph.add_edge(b3, nend)
 
 if args.is_empty then
        print graph.to_dot
-       graph.show
+       # graph.show
 else
        graph.to_dot.write_to_file args.first
 end