Sha256: e22cff22fbbda6a1b027828606dd3542eea15643cb7b9d1bd3f60e2e460e881e
Contents?: true
Size: 977 Bytes
Versions: 9
Compression:
Stored size: 977 Bytes
Contents
module RuboCop module Cop module RSpec # Checks for consistent method usage for negating expectations. # # @example # # bad # it '...' do # expect(false).to_not be_true # end # # # good # it '...' do # expect(false).not_to be_true # end class NotToNot < Cop include ConfigurableEnforcedStyle MSG = 'Prefer `%<replacement>s` over `%<original>s`.'.freeze def_node_matcher :not_to_not_offense, '(send _ % ...)' def on_send(node) not_to_not_offense(node, alternative_style) do add_offense(node, location: :expression) end end def autocorrect(node) ->(corrector) { corrector.replace(node.loc.selector, style.to_s) } end private def message(_node) format(MSG, replacement: style, original: alternative_style) end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems