Class: RuboCop::Cop::RSpecRails::HttpStatus::BeStatusStyleChecker
- Inherits:
-
StyleCheckerBase
- Object
- StyleCheckerBase
- RuboCop::Cop::RSpecRails::HttpStatus::BeStatusStyleChecker
- Defined in:
- lib/rubocop/cop/rspec_rails/http_status.rb
Overview
:nodoc:
Constant Summary
Constants inherited from StyleCheckerBase
StyleCheckerBase::ALLOWED_STATUSES, StyleCheckerBase::MSG, StyleCheckerBase::MSG_UNKNOWN_STATUS_CODE
Instance Attribute Summary
Attributes inherited from StyleCheckerBase
Instance Method Summary collapse
Methods inherited from StyleCheckerBase
#allowed_symbol?, #current, #custom_http_status_code?, #initialize, #message
Constructor Details
This class inherits a constructor from RuboCop::Cop::RSpecRails::HttpStatus::StyleCheckerBase
Instance Method Details
permalink #autocorrectable? ⇒ Boolean
208 209 210 |
# File 'lib/rubocop/cop/rspec_rails/http_status.rb', line 208 def autocorrectable? !!status_code end |
permalink #offense_range ⇒ Object
[View source]
212 213 214 |
# File 'lib/rubocop/cop/rspec_rails/http_status.rb', line 212 def offense_range node.parent end |
permalink #offensive? ⇒ Boolean
203 204 205 206 |
# File 'lib/rubocop/cop/rspec_rails/http_status.rb', line 203 def offensive? (!node.sym_type? && !custom_http_status_code?) || (!node.int_type? && !allowed_symbol?) end |
permalink #prefer ⇒ Object
[View source]
216 217 218 |
# File 'lib/rubocop/cop/rspec_rails/http_status.rb', line 216 def prefer "be_#{status_code}" end |