class RSpec::Rails::Matchers::RenderTemplate::RenderTemplateMatcher

Public Class Methods

new(scope, expected, message=nil) click to toggle source
# File lib/rspec/rails/matchers/have_rendered.rb, line 5
def initialize(scope, expected, message=nil)
  @expected = Symbol === expected ? expected.to_s : expected
  @message = message
  @scope = scope
end

Public Instance Methods

failure_message_for_should() click to toggle source

@api private

# File lib/rspec/rails/matchers/have_rendered.rb, line 19
def failure_message_for_should
  rescued_exception.message
end
failure_message_for_should_not() click to toggle source

@api private

# File lib/rspec/rails/matchers/have_rendered.rb, line 24
def failure_message_for_should_not
  "expected not to render #{expected.inspect}, but did"
end
matches?(*) click to toggle source

@api private

# File lib/rspec/rails/matchers/have_rendered.rb, line 12
def matches?(*)
  match_unless_raises ActiveSupport::TestCase::Assertion do
    @scope.assert_template expected, @message
  end
end