Module: RSpec::Rails::ViewRendering

Extended by:
ActiveSupport::Concern
Included in:
ControllerExampleGroup
Defined in:
lib/rspec/rails/view_rendering.rb

Defined Under Namespace

Modules: ClassMethods, EmptyTemplates Classes: EmptyTemplatePathSetDecorator

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#controllerObject

Returns the value of attribute controller.



30
31
32
# File 'lib/rspec/rails/view_rendering.rb', line 30

def controller
  @controller
end

Instance Method Details

#render_views?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.

Returns:

  • (Boolean)


55
56
57
# File 'lib/rspec/rails/view_rendering.rb', line 55

def render_views?
  self.class.render_views? || !controller.class.respond_to?(:view_paths)
end