summary refs log tree commit
path: root/test/spec_builder.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/spec_builder.rb')
-rw-r--r--test/spec_builder.rb7
1 files changed, 0 insertions, 7 deletions
diff --git a/test/spec_builder.rb b/test/spec_builder.rb
index b1701735..dd529db2 100644
--- a/test/spec_builder.rb
+++ b/test/spec_builder.rb
@@ -240,13 +240,6 @@ describe Rack::Builder do
       env.must_equal({})
     end
 
-    it "requires anything not ending in .ru" do
-      $: << File.dirname(__FILE__)
-      app, * = Rack::Builder.parse_file 'builder/anything'
-      Rack::MockRequest.new(app).get("/").body.to_s.must_equal 'OK'
-      $:.pop
-    end
-
     it 'requires an_underscore_app not ending in .ru' do
       $: << File.dirname(__FILE__)
       app, * = Rack::Builder.parse_file 'builder/an_underscore_app'