Remove `vagrant down` test files

This commit is contained in:
Mitchell Hashimoto 2010-04-25 00:51:30 -07:00
parent 753ed4c574
commit ffded418f7
1 changed files with 0 additions and 17 deletions

View File

@ -1,17 +0,0 @@
require File.join(File.dirname(__FILE__), '..', '..', 'test_helper')
class CommandsDownTest < Test::Unit::TestCase
setup do
@klass = Vagrant::Commands::Down
@env = mock_environment
@instance = @klass.new(@env)
end
context "executing" do
should "just error and exit" do
@instance.expects(:error_and_exit).with(:command_deprecation_down)
@instance.execute
end
end
end