summaryrefslogtreecommitdiff
path: root/test/spec_builder.rb
diff options
context:
space:
mode:
authorLars Gierth <lars.gierth@gmail.com>2011-12-28 23:33:51 +0100
committerLars Gierth <lars@soundcloud.com>2012-03-31 20:23:55 +0200
commit3502b0f3fd127aee9133267104dfb2d5c1c0cd36 (patch)
tree415c9d0b3f02518ead6eee753f2b03bbaa6498c8 /test/spec_builder.rb
parentd3328c3f0955ca0648d0076bfdace8bad50765b2 (diff)
downloadrack-3502b0f3fd127aee9133267104dfb2d5c1c0cd36.tar.gz
Squash warnings caused by test code
Diffstat (limited to 'test/spec_builder.rb')
-rw-r--r--test/spec_builder.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/spec_builder.rb b/test/spec_builder.rb
index eb497df9..b998c9d2 100644
--- a/test/spec_builder.rb
+++ b/test/spec_builder.rb
@@ -193,7 +193,7 @@ describe Rack::Builder do
it "requires anything not ending in .ru" do
$: << File.dirname(__FILE__)
- app, options = Rack::Builder.parse_file 'builder/anything'
+ app, * = Rack::Builder.parse_file 'builder/anything'
Rack::MockRequest.new(app).get("/").body.to_s.should.equal 'OK'
$:.pop
end