lib/rspec/rails/matchers/redirect_to.rb



module RSpec::Rails::Matchers
  module RedirectTo
    class RedirectTo
      include RSpec::Matchers::BaseMatcher

      def initialize(scope, expected)
        super(expected)
        @scope = scope
      end

      # @api private
      def matches?(actual)
        match_unless_raises ActiveSupport::TestCase::Assertion do
          @scope.assert_redirected_to(expected)
        end
      end

      # @api private
      def failure_message_for_should
        rescued_exception.message
      end

      # @api private
      def failure_message_for_should_not
        "expected not to redirect to #{expected.inspect}, but did"
      end
    end

    # Delegates to `assert_redirected_to`
    #
    # @example
    #
    #     response.should redirect_to(:action => "new")
    def redirect_to(target)
      RedirectTo.new(self, target)
    end
  end
end