Sha256: e7b6cf5f96f79ebd43c129401ba8f918b0bdf45bc34e2faced4e31d3e7113b5b
Contents?: true
Size: 799 Bytes
Versions: 28
Compression:
Stored size: 799 Bytes
Contents
# frozen_string_literal: true module RuboCop module Cop module RSpec module Capybara # @!parse # # Checks for there is a more specific actions offered by Capybara. # # # # @example # # # # # bad # # find('a').click # # find('button.cls').click # # find('a', exact_text: 'foo').click # # find('div button').click # # # # # good # # click_link # # click_button(class: 'cls') # # click_link(exact_text: 'foo') # # find('div').click_button # # # class SpecificActions < ::RuboCop::Cop::Base; end SpecificActions = ::RuboCop::Cop::Capybara::SpecificActions end end end end
Version data entries
28 entries across 28 versions & 4 rubygems