Sha256: 2336876844d455a30707e7f644d2e63373ce7209403d8d6847f01c956e4039e3
Contents?: true
Size: 999 Bytes
Versions: 12
Compression:
Stored size: 999 Bytes
Contents
# frozen_string_literal: true 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`.' def_node_matcher :not_to_not_offense, '(send _ % ...)' def on_send(node) not_to_not_offense(node, alternative_style) do add_offense(node, location: :selector) 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
12 entries across 12 versions & 1 rubygems