From 703f455d5ae63657dae82629a9d5c8ebf2daf4ff Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sun, 18 Dec 2011 13:51:58 -0800 Subject: [PATCH] `vagrant version` is gone, so remove the acceptance test for it --- test/acceptance/version_test.rb | 5 ----- 1 file changed, 5 deletions(-) diff --git a/test/acceptance/version_test.rb b/test/acceptance/version_test.rb index 40b18b338..1c1c31b91 100644 --- a/test/acceptance/version_test.rb +++ b/test/acceptance/version_test.rb @@ -3,11 +3,6 @@ require File.expand_path("../base", __FILE__) describe "vagrant version" do include_context "acceptance" - it "prints the version to stdout" do - result = execute("vagrant", "version") - result.stdout.should match_output(:version, config.vagrant_version) - end - it "prints the version when called with '-v'" do result = execute("vagrant", "-v") result.stdout.should match_output(:version, config.vagrant_version)