diff options
author | Adam Jacob <adam@hjksolutions.com> | 2008-03-10 00:38:43 -0700 |
---|---|---|
committer | Adam Jacob <adam@hjksolutions.com> | 2008-03-10 00:38:43 -0700 |
commit | 3dd77b260393bae93bb27677e3f8a45f407981c1 (patch) | |
tree | d017427ddcd5733caf7c0ceeec8ea72abbb107fa /bin | |
parent | b4beed548959ca63365ca3d799c59a155047b5ff (diff) | |
download | chef-3dd77b260393bae93bb27677e3f8a45f407981c1.tar.gz |
Added rcov coverage, lots of tests, definitions, node support
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/marionette-dotgraph | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/marionette-dotgraph b/bin/marionette-dotgraph index 80e2f342d7..75c33da274 100755 --- a/bin/marionette-dotgraph +++ b/bin/marionette-dotgraph @@ -19,10 +19,10 @@ # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # -require File.join(File.dirname(__FILE__), "..", "lib", "marionette") +require File.join(File.dirname(__FILE__), "..", "lib", "chef") require 'rgl/dot' -mr = Marionette::Recipe.new("test", "default", "node") +mr = Chef::Recipe.new("test", "default", "node") raise ArgumentError, "#{ARGV[0]} is not a file!" unless File.exists?(ARGV[0]) mr.instance_eval(IO.read(ARGV[0]), ARGV[0], 1) puts mr.inspect |