Sha256: d4ccea638a0870a12cef6056c5e2c2185fd682de94931823fc08fe66648ed255

Contents?: true

Size: 1011 Bytes

Versions: 28

Compression:

Stored size: 1011 Bytes

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module RSpec
      module Capybara
        # @!parse
        #   # Enforces use of `have_no_*` or `not_to` for negated expectations.
        #   #
        #   # @example EnforcedStyle: not_to (default)
        #   #   # bad
        #   #   expect(page).to have_no_selector
        #   #   expect(page).to have_no_css('a')
        #   #
        #   #   # good
        #   #   expect(page).not_to have_selector
        #   #   expect(page).not_to have_css('a')
        #   #
        #   # @example EnforcedStyle: have_no
        #   #   # bad
        #   #   expect(page).not_to have_selector
        #   #   expect(page).not_to have_css('a')
        #   #
        #   #   # good
        #   #   expect(page).to have_no_selector
        #   #   expect(page).to have_no_css('a')
        #   #
        #   class NegationMatcher < ::RuboCop::Cop::Base; end
        NegationMatcher = ::RuboCop::Cop::Capybara::NegationMatcher
      end
    end
  end
end

Version data entries

28 entries across 28 versions & 4 rubygems

Version Path
rubocop-rspec-2.31.0 lib/rubocop/cop/rspec/capybara/negation_matcher.rb
rubocop-rspec-2.30.0 lib/rubocop/cop/rspec/capybara/negation_matcher.rb
rubocop-rspec-2.29.2 lib/rubocop/cop/rspec/capybara/negation_matcher.rb
rubocop-rspec-2.29.1 lib/rubocop/cop/rspec/capybara/negation_matcher.rb
rubocop-rspec-2.29.0 lib/rubocop/cop/rspec/capybara/negation_matcher.rb
rubocop-rspec-2.28.0 lib/rubocop/cop/rspec/capybara/negation_matcher.rb
rubocop-rspec-2.27.1 lib/rubocop/cop/rspec/capybara/negation_matcher.rb
rubocop-rspec-2.27.0 lib/rubocop/cop/rspec/capybara/negation_matcher.rb
mlh-rubocop-config-1.0.3 vendor/bundle/ruby/3.2.0/gems/rubocop-rspec-2.26.1/lib/rubocop/cop/rspec/capybara/negation_matcher.rb
rubocop-rspec-2.26.1 lib/rubocop/cop/rspec/capybara/negation_matcher.rb
rubocop-rspec-2.26.0 lib/rubocop/cop/rspec/capybara/negation_matcher.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rubocop-rspec-2.22.0/lib/rubocop/cop/rspec/capybara/negation_matcher.rb
rubocop-rspec-2.25.0 lib/rubocop/cop/rspec/capybara/negation_matcher.rb
rubocop-rspec-2.24.1 lib/rubocop/cop/rspec/capybara/negation_matcher.rb
rubocop-rspec-2.24.0 lib/rubocop/cop/rspec/capybara/negation_matcher.rb
rubocop-rspec-2.23.2 lib/rubocop/cop/rspec/capybara/negation_matcher.rb
rubocop-rspec-2.23.1 lib/rubocop/cop/rspec/capybara/negation_matcher.rb
rubocop-rspec-2.23.0 lib/rubocop/cop/rspec/capybara/negation_matcher.rb
mlh-rubocop-config-1.0.2 vendor/bundle/ruby/3.2.0/gems/rubocop-rspec-2.22.0/lib/rubocop/cop/rspec/capybara/negation_matcher.rb
fablicop-1.10.3 vendor/bundle/ruby/3.2.0/gems/rubocop-rspec-2.22.0/lib/rubocop/cop/rspec/capybara/negation_matcher.rb