Module: RSpec::Rails::Matchers::RedirectTo Private

Included in:
ControllerExampleGroup, RequestExampleGroup
Defined in:
lib/rspec/rails/matchers/redirect_to.rb

Overview

This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.

Matcher for redirects.

Instance Method Summary (collapse)

Instance Method Details

- (Object) redirect_to(target)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Delegates to assert_redirected_to.

Examples:

expect(response).to redirect_to(:action => "new")
32
33
34
# File 'lib/rspec/rails/matchers/redirect_to.rb', line 32
def redirect_to(target)
  RedirectTo.new(self, target)
end