Sha256: d5cc63d1b2036e555bd744d0f54efb20b84d9bb0aa9b0a6364dbd89acb0014b0
Contents?: true
Size: 1.26 KB
Versions: 1
Compression:
Stored size: 1.26 KB
Contents
// Graph of dependencies of feature files in directory: // 'C:/Ruby193/lib/ruby/site_ruby/Cukedep/spec/cukedep/sample_features' // This file uses the DOT syntax, a free utility from the Graphviz toolset. // Graphviz is available at: www.graphviz.org // File generated on Thu Apr 2 21:15:29 2015. digraph g { size = "7, 11"; // Dimensions in inches... center = true; rankdir = BT; // Draw from bottom to top label = "\nDependency graph of 'C:/Ruby193/lib/ruby/site_ruby/Cukedep/spec/cukedep/sample_features'"; // Nodes represent feature files subgraph island { node [shape = box, style=filled, color=lightgray]; node_4 [label = "standalone"]; label = "Isolated features"; } subgraph dependencies { node [shape = box, fillcolor = none]; node_0 [label = "a_few_tests -- qux"]; node_1 [label = "more_tests -- quux"]; node_2 [label = "other_tests -- corge"]; node_3 [label = "some_tests -- foo"]; node_5 [label = "still_other_tests -- baz"]; node_6 [label = "yet_other_tests -- bar"]; label = "Dependencies"; } // The edges represent dependencies node_2 -> node_3; node_3 -> node_6; node_3 -> node_0; node_6 -> node_5; node_6 -> node_0; node_6 -> node_1; } // End of graph
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
cukedep-0.1.09 | spec/cukedep/sample_features/dependencies.dot |