Init execute test

This commit is contained in:
Mitchell Hashimoto 2010-04-13 15:55:56 -07:00
parent 95592eb7f6
commit e6006eacfa
1 changed files with 5 additions and 1 deletions

View File

@ -9,7 +9,11 @@ class CommandsInitTest < Test::Unit::TestCase
end
context "execute" do
# TODO
should "create the vagrantfile with the first arg" do
args = [:foo]
@instance.expects(:create_vagrantfile).with(args.first)
@instance.execute(args)
end
end
context "creating the vagrantfile" do