module ActionDispatch::IntegrationTest::Behavior::ClassMethods
Public Instance Methods
app()
click to toggle source
# File lib/action_dispatch/testing/integration.rb, line 761 def app defined?(@@app) ? @@app : ActionDispatch.test_app end
app=(app)
click to toggle source
# File lib/action_dispatch/testing/integration.rb, line 765 def app=(app) @@app = app end
register_encoder(*args)
click to toggle source
# File lib/action_dispatch/testing/integration.rb, line 769 def register_encoder(*args) Integration::Session::RequestEncoder.register_encoder(*args) end