From ffded418f70454cced4b518155675f8b34f09e31 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sun, 25 Apr 2010 00:51:30 -0700 Subject: [PATCH] Remove `vagrant down` test files --- test/vagrant/commands/down_test.rb | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 test/vagrant/commands/down_test.rb diff --git a/test/vagrant/commands/down_test.rb b/test/vagrant/commands/down_test.rb deleted file mode 100644 index 634608d17..000000000 --- a/test/vagrant/commands/down_test.rb +++ /dev/null @@ -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