Methods
C
N
Class Public methods
new(app)
# File railties/test/railties/engine_test.rb, line 65
def initialize(app)
  @app = app
end
Instance Public methods
call(env)
# File railties/test/railties/engine_test.rb, line 69
def call(env)
  response = @app.call(env)
  response[2].each { |b| b.upcase! }
  response
end