test/delegator_test.rb in sinatra-1.3.2 vs test/delegator_test.rb in sinatra-1.3.3
- old
+ new
@@ -100,10 +100,10 @@
app, mixin = mirror, Module.new
Sinatra.helpers mixin
assert_equal ["helpers", mixin.to_s], app.last_call
end
- it "registers helpers with the delegation target" do
+ it "registers middleware with the delegation target" do
app, mixin = mirror, Module.new
Sinatra.use mixin
assert_equal ["use", mixin.to_s], app.last_call
end