From c307a01baf6a78a8c9f629298cb4908dbedbdbea Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Wed, 6 Feb 2013 22:59:46 -0800 Subject: [PATCH] Remove unused test --- test/unit/vagrant/action/environment_test.rb | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 test/unit/vagrant/action/environment_test.rb diff --git a/test/unit/vagrant/action/environment_test.rb b/test/unit/vagrant/action/environment_test.rb deleted file mode 100644 index e516429bc..000000000 --- a/test/unit/vagrant/action/environment_test.rb +++ /dev/null @@ -1,16 +0,0 @@ -require File.expand_path("../../../base", __FILE__) - -describe Vagrant::Action::Environment do - let(:instance) { described_class.new } - - it "should be a hash" do - instance.should be_empty - instance["foo"] = "bar" - instance["foo"].should == "bar" - end - - it "should be a hash accessible by string or symbol" do - instance["foo"] = "bar" - instance[:foo].should == "bar" - end -end