Basic box tests

This commit is contained in:
Mitchell Hashimoto 2011-11-02 21:42:09 -07:00
parent a19fa6a07c
commit b3e4efb786
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
require File.expand_path("../base", __FILE__)
class BoxTest < AcceptanceTest
should "have no boxes by default" do
result = execute("vagrant", "box", "list")
assert result.stdout.read =~ /There are no installed boxes!/
end
end