Module: RSpec::Rails::Matchers::RenderTemplate

Included in:
ControllerExampleGroup, RequestExampleGroup, SystemExampleGroup, ViewExampleGroup
Defined in:
lib/rspec/rails/matchers/have_rendered.rb

Overview

Matcher for template rendering.

Instance Method Summary collapse

Instance Method Details

#have_rendered(options, message = nil) ⇒ Object Also known as: render_template

Delegates to assert_template.

Examples:

expect(response).to have_rendered("new")


56
57
58
# File 'lib/rspec/rails/matchers/have_rendered.rb', line 56

def have_rendered(options, message = nil)
  RenderTemplateMatcher.new(self, options, message)
end