Sha256: 0039e4d1aa7ab950537f60c4512367ff85a1e214a2125f0ca57ee0adbde0ad51

Contents?: true

Size: 1.07 KB

Versions: 12

Compression:

Stored size: 1.07 KB

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 < Base
        extend AutoCorrector
        include ConfigurableEnforcedStyle

        MSG = 'Prefer `%<replacement>s` over `%<original>s`.'
        RESTRICT_ON_SEND = %i[not_to to_not].freeze

        # @!method not_to_not_offense(node)
        def_node_matcher :not_to_not_offense, '(send _ % ...)'

        def on_send(node)
          not_to_not_offense(node, alternative_style) do
            add_offense(node.loc.selector) do |corrector|
              corrector.replace(node.loc.selector, style.to_s)
            end
          end
        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 & 2 rubygems

Version Path
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rubocop-rspec-2.9.0/lib/rubocop/cop/rspec/not_to_not.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/rubocop-rspec-2.9.0/lib/rubocop/cop/rspec/not_to_not.rb
rubocop-rspec-2.11.1 lib/rubocop/cop/rspec/not_to_not.rb
rubocop-rspec-2.11.0 lib/rubocop/cop/rspec/not_to_not.rb
rubocop-rspec-2.10.0 lib/rubocop/cop/rspec/not_to_not.rb
rubocop-rspec-2.9.0 lib/rubocop/cop/rspec/not_to_not.rb
rubocop-rspec-2.8.0 lib/rubocop/cop/rspec/not_to_not.rb
rubocop-rspec-2.7.0 lib/rubocop/cop/rspec/not_to_not.rb
rubocop-rspec-2.6.0 lib/rubocop/cop/rspec/not_to_not.rb
rubocop-rspec-2.5.0 lib/rubocop/cop/rspec/not_to_not.rb
rubocop-rspec-2.4.0 lib/rubocop/cop/rspec/not_to_not.rb
rubocop-rspec-2.3.0 lib/rubocop/cop/rspec/not_to_not.rb