Module: RSpec::Rails::ViewRendering Private
- Extended by:
- ActiveSupport::Concern
- Included in:
- ControllerExampleGroup
- Defined in:
- lib/rspec/rails/view_rendering.rb
Overview
This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.
Helpers for optionally rendering views in controller specs.
Defined Under Namespace
Modules: ClassMethods
Instance Attribute Summary (collapse)
- - (Object) controller private
Instance Method Summary (collapse)
- - (Boolean) render_views? private
Instance Attribute Details
- (Object) controller
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.
9 10 11 |
# File 'lib/rspec/rails/view_rendering.rb', line 9 def controller @controller end |
Instance Method Details
- (Boolean) render_views?
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.
31 32 33 |
# File 'lib/rspec/rails/view_rendering.rb', line 31 def render_views? self.class.render_views? || !controller.class.respond_to?(:view_paths) end |