Class: RuboCop::Cop::RSpec::Rails::HttpStatus::NumericStyleChecker

Inherits:
Object
  • Object
show all
Defined in:
lib/rubocop/cop/rspec/rails/http_status.rb

Overview

:nodoc:

Constant Summary collapse

MSG =
'Prefer `%<prefer>s` over `%<current>s` ' \
'to describe HTTP status code.'
WHITELIST_STATUS =
%i[error success missing redirect].freeze

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(node) ⇒ NumericStyleChecker

Returns a new instance of NumericStyleChecker.



113
114
115
# File 'lib/rubocop/cop/rspec/rails/http_status.rb', line 113

def initialize(node)
  @node = node
end

Instance Attribute Details

#nodeObject (readonly)

Returns the value of attribute node.



112
113
114
# File 'lib/rubocop/cop/rspec/rails/http_status.rb', line 112

def node
  @node
end

Instance Method Details

#messageObject



121
122
123
# File 'lib/rubocop/cop/rspec/rails/http_status.rb', line 121

def message
  format(MSG, prefer: preferred_style, current: symbol.inspect)
end

#offensive?Boolean

Returns:

  • (Boolean)


117
118
119
# File 'lib/rubocop/cop/rspec/rails/http_status.rb', line 117

def offensive?
  !node.int_type? && !whitelisted_symbol?
end

#preferred_styleObject



125
126
127
# File 'lib/rubocop/cop/rspec/rails/http_status.rb', line 125

def preferred_style
  number.to_s
end