class AbstractController::Testing::CallbacksWithArgs
Public Instance Methods
first()
click to toggle source
# File actionpack/test/abstract/callbacks_test.rb, line 253 def first @text = "Hello world" end
index(text)
click to toggle source
# File actionpack/test/abstract/callbacks_test.rb, line 257 def index(text) self.response_body = @text + text end