Class: RSpec::Rails::Matchers::RenderTemplate::RenderTemplateMatcher
- Inherits:
-
Object
- Object
- RSpec::Rails::Matchers::RenderTemplate::RenderTemplateMatcher
- Includes:
- Matchers::BaseMatcher
- Defined in:
- lib/rspec/rails/matchers/render_template.rb
Instance Method Summary collapse
- #failure_message_for_should ⇒ Object private
- #failure_message_for_should_not ⇒ Object private
-
#initialize(scope, expected, message = nil) ⇒ RenderTemplateMatcher
constructor
A new instance of RenderTemplateMatcher.
- #matches? ⇒ Boolean private
Constructor Details
#initialize(scope, expected, message = nil) ⇒ RenderTemplateMatcher
Returns a new instance of RenderTemplateMatcher.
6 7 8 9 10 |
# File 'lib/rspec/rails/matchers/render_template.rb', line 6 def initialize(scope, expected, =nil) super(Symbol === expected ? expected.to_s : expected) @message = @scope = scope end |
Instance Method Details
#failure_message_for_should ⇒ Object
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.
20 21 22 |
# File 'lib/rspec/rails/matchers/render_template.rb', line 20 def rescued_exception. end |
#failure_message_for_should_not ⇒ Object
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.
25 26 27 |
# File 'lib/rspec/rails/matchers/render_template.rb', line 25 def "expected not to render #{expected.inspect}, but did" end |
#matches? ⇒ Boolean
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.
13 14 15 16 17 |
# File 'lib/rspec/rails/matchers/render_template.rb', line 13 def matches?(*) match_unless_raises ActiveSupport::TestCase::Assertion do @scope.assert_template expected, @message end end |