Methods

Instance Public methods

app()

📝 Source code
# File actionpack/lib/action_dispatch/testing/integration.rb, line 625
        def app
          if defined?(@@app) && @@app
            @@app
          else
            ActionDispatch.test_app
          end
        end
🔎 See on GitHub

app=(app)

📝 Source code
# File actionpack/lib/action_dispatch/testing/integration.rb, line 633
        def app=(app)
          @@app = app
        end
🔎 See on GitHub

register_encoder(*args)

📝 Source code
# File actionpack/lib/action_dispatch/testing/integration.rb, line 637
        def register_encoder(*args)
          RequestEncoder.register_encoder(*args)
        end
🔎 See on GitHub