Module: ActionController::Integration::ControllerCapture

Defined in:
lib/action_controller/integration.rb

Overview

A module used to extend ActionController::Base, so that integration tests can capture the controller used to satisfy a request.

Defined Under Namespace

Modules: ClassMethods

Class Method Summary collapse

Class Method Details

.included(base) ⇒ Object

:nodoc:



410
411
412
413
414
415
416
417
# File 'lib/action_controller/integration.rb', line 410

def self.included(base)
  base.extend(ClassMethods)
  base.class_eval do
    class << self
      alias_method_chain :new, :capture
    end
  end
end