summary refs log tree commit
path: root/test/spec_mock.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/spec_mock.rb')
-rw-r--r--test/spec_mock.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/spec_mock.rb b/test/spec_mock.rb
index 4bc57b18..1eb4fc43 100644
--- a/test/spec_mock.rb
+++ b/test/spec_mock.rb
@@ -46,7 +46,6 @@ describe Rack::MockRequest do
   it "be able to only return the environment" do
     env = Rack::MockRequest.env_for("")
     env.must_be_kind_of Hash
-    env.must_include "rack.version"
   end
 
   it "should handle a non-GET request with both :input and :params" do
@@ -61,7 +60,6 @@ describe Rack::MockRequest do
     env["QUERY_STRING"].must_equal "location[]=1&location[]=2&age_group[]=2"
     env["PATH_INFO"].must_equal "/parse"
     env.must_be_kind_of Hash
-    env.must_include "rack.version"
   end
 
   it "provide sensible defaults" do