Class: RuboCop::Cop::RSpecRails::HttpStatus::BeStatusStyleChecker

Inherits:
StyleCheckerBase
  • Object
show all
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

#node

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

#autocorrectable?Boolean

Returns:

  • (Boolean)
[View source]

208
209
210
# File 'lib/rubocop/cop/rspec_rails/http_status.rb', line 208

def autocorrectable?
  !!status_code
end

#offense_rangeObject

[View source]

212
213
214
# File 'lib/rubocop/cop/rspec_rails/http_status.rb', line 212

def offense_range
  node.parent
end

#offensive?Boolean

Returns:

  • (Boolean)
[View source]

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

#preferObject

[View source]

216
217
218
# File 'lib/rubocop/cop/rspec_rails/http_status.rb', line 216

def prefer
  "be_#{status_code}"
end