Remove unused test

This commit is contained in:
Mitchell Hashimoto 2013-02-06 22:59:46 -08:00
parent cd3d2a1e8c
commit c307a01baf
1 changed files with 0 additions and 16 deletions

View File

@ -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