Update RBI files for rubocop-capybara.
Autogenerated by the [vendor-gems](https://github.com/Homebrew/brew/blob/HEAD/.github/workflows/vendor-gems.yml) workflow.
This commit is contained in:
parent
586cd92294
commit
106f68187a
@ -195,17 +195,16 @@ RuboCop::Cop::Capybara::CapybaraHelp::SPECIFIC_OPTIONS = T.let(T.unsafe(nil), Ha
|
|||||||
# source://rubocop-capybara//lib/rubocop/cop/capybara/mixin/capybara_help.rb#35
|
# source://rubocop-capybara//lib/rubocop/cop/capybara/mixin/capybara_help.rb#35
|
||||||
RuboCop::Cop::Capybara::CapybaraHelp::SPECIFIC_PSEUDO_CLASSES = T.let(T.unsafe(nil), Array)
|
RuboCop::Cop::Capybara::CapybaraHelp::SPECIFIC_PSEUDO_CLASSES = T.let(T.unsafe(nil), Array)
|
||||||
|
|
||||||
# Checks for click button or link style.
|
# Checks for methods of button or link clicks.
|
||||||
#
|
#
|
||||||
# @example EnforcedStyle: strict (default)
|
# By default, prefer to use `click_link_or_button` or `click_on`.
|
||||||
# # bad
|
# These methods offer a weaker coupling between the test and HTML,
|
||||||
# click_link_or_button('foo')
|
# allowing for a more faithful reflection of how the user behaves.
|
||||||
# click_on('foo')
|
|
||||||
#
|
#
|
||||||
# # good
|
# You can set `EnforcedStyle: strict` to prefer the use of
|
||||||
# click_link('foo')
|
# `click_link` and `click_button`, but this is a deprecated setting.
|
||||||
# click_button('foo')
|
#
|
||||||
# @example EnforcedStyle: link_or_button
|
# @example EnforcedStyle: link_or_button (default)
|
||||||
# # bad
|
# # bad
|
||||||
# click_link('foo')
|
# click_link('foo')
|
||||||
# click_button('foo')
|
# click_button('foo')
|
||||||
@ -213,50 +212,101 @@ RuboCop::Cop::Capybara::CapybaraHelp::SPECIFIC_PSEUDO_CLASSES = T.let(T.unsafe(n
|
|||||||
# # good
|
# # good
|
||||||
# click_link_or_button('foo')
|
# click_link_or_button('foo')
|
||||||
# click_on('foo')
|
# click_on('foo')
|
||||||
|
# @example EnforcedStyle: strict
|
||||||
|
# # bad
|
||||||
|
# click_link_or_button('foo')
|
||||||
|
# click_on('foo')
|
||||||
#
|
#
|
||||||
# source://rubocop-capybara//lib/rubocop/cop/capybara/click_link_or_button_style.rb#26
|
# # good
|
||||||
|
# click_link('foo')
|
||||||
|
# click_button('foo')
|
||||||
|
#
|
||||||
|
# source://rubocop-capybara//lib/rubocop/cop/capybara/click_link_or_button_style.rb#33
|
||||||
class RuboCop::Cop::Capybara::ClickLinkOrButtonStyle < ::RuboCop::Cop::Base
|
class RuboCop::Cop::Capybara::ClickLinkOrButtonStyle < ::RuboCop::Cop::Base
|
||||||
include ::RuboCop::Cop::ConfigurableEnforcedStyle
|
include ::RuboCop::Cop::ConfigurableEnforcedStyle
|
||||||
|
|
||||||
# source://rubocop-capybara//lib/rubocop/cop/capybara/click_link_or_button_style.rb#37
|
# source://rubocop-capybara//lib/rubocop/cop/capybara/click_link_or_button_style.rb#44
|
||||||
def on_send(node); end
|
def on_send(node); end
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
# @return [Boolean]
|
# @return [Boolean]
|
||||||
#
|
#
|
||||||
# source://rubocop-capybara//lib/rubocop/cop/capybara/click_link_or_button_style.rb#62
|
# source://rubocop-capybara//lib/rubocop/cop/capybara/click_link_or_button_style.rb#69
|
||||||
def link_or_button_method?(node); end
|
def link_or_button_method?(node); end
|
||||||
|
|
||||||
# @return [Boolean]
|
# @return [Boolean]
|
||||||
#
|
#
|
||||||
# source://rubocop-capybara//lib/rubocop/cop/capybara/click_link_or_button_style.rb#45
|
# source://rubocop-capybara//lib/rubocop/cop/capybara/click_link_or_button_style.rb#52
|
||||||
def offense?(node); end
|
def offense?(node); end
|
||||||
|
|
||||||
# source://rubocop-capybara//lib/rubocop/cop/capybara/click_link_or_button_style.rb#50
|
# source://rubocop-capybara//lib/rubocop/cop/capybara/click_link_or_button_style.rb#57
|
||||||
def offense_message(node); end
|
def offense_message(node); end
|
||||||
|
|
||||||
# @return [Boolean]
|
# @return [Boolean]
|
||||||
#
|
#
|
||||||
# source://rubocop-capybara//lib/rubocop/cop/capybara/click_link_or_button_style.rb#58
|
# source://rubocop-capybara//lib/rubocop/cop/capybara/click_link_or_button_style.rb#65
|
||||||
def strict_method?(node); end
|
def strict_method?(node); end
|
||||||
end
|
end
|
||||||
|
|
||||||
# source://rubocop-capybara//lib/rubocop/cop/capybara/click_link_or_button_style.rb#34
|
# source://rubocop-capybara//lib/rubocop/cop/capybara/click_link_or_button_style.rb#41
|
||||||
RuboCop::Cop::Capybara::ClickLinkOrButtonStyle::CLICK_LINK_OR_BUTTON = T.let(T.unsafe(nil), Array)
|
RuboCop::Cop::Capybara::ClickLinkOrButtonStyle::CLICK_LINK_OR_BUTTON = T.let(T.unsafe(nil), Array)
|
||||||
|
|
||||||
# source://rubocop-capybara//lib/rubocop/cop/capybara/click_link_or_button_style.rb#31
|
# source://rubocop-capybara//lib/rubocop/cop/capybara/click_link_or_button_style.rb#38
|
||||||
RuboCop::Cop::Capybara::ClickLinkOrButtonStyle::MSG_CLICK_LINK_OR_BUTTON = T.let(T.unsafe(nil), String)
|
RuboCop::Cop::Capybara::ClickLinkOrButtonStyle::MSG_CLICK_LINK_OR_BUTTON = T.let(T.unsafe(nil), String)
|
||||||
|
|
||||||
# source://rubocop-capybara//lib/rubocop/cop/capybara/click_link_or_button_style.rb#29
|
# source://rubocop-capybara//lib/rubocop/cop/capybara/click_link_or_button_style.rb#36
|
||||||
RuboCop::Cop::Capybara::ClickLinkOrButtonStyle::MSG_STRICT = T.let(T.unsafe(nil), String)
|
RuboCop::Cop::Capybara::ClickLinkOrButtonStyle::MSG_STRICT = T.let(T.unsafe(nil), String)
|
||||||
|
|
||||||
# source://rubocop-capybara//lib/rubocop/cop/capybara/click_link_or_button_style.rb#35
|
# source://rubocop-capybara//lib/rubocop/cop/capybara/click_link_or_button_style.rb#42
|
||||||
RuboCop::Cop::Capybara::ClickLinkOrButtonStyle::RESTRICT_ON_SEND = T.let(T.unsafe(nil), Array)
|
RuboCop::Cop::Capybara::ClickLinkOrButtonStyle::RESTRICT_ON_SEND = T.let(T.unsafe(nil), Array)
|
||||||
|
|
||||||
# source://rubocop-capybara//lib/rubocop/cop/capybara/click_link_or_button_style.rb#33
|
# source://rubocop-capybara//lib/rubocop/cop/capybara/click_link_or_button_style.rb#40
|
||||||
RuboCop::Cop::Capybara::ClickLinkOrButtonStyle::STRICT_METHODS = T.let(T.unsafe(nil), Array)
|
RuboCop::Cop::Capybara::ClickLinkOrButtonStyle::STRICT_METHODS = T.let(T.unsafe(nil), Array)
|
||||||
|
|
||||||
|
# Css selector parser.
|
||||||
|
#
|
||||||
|
# @api private
|
||||||
|
#
|
||||||
|
# source://rubocop-capybara//lib/rubocop/cop/capybara/mixin/css_attributes_parser.rb#8
|
||||||
|
class RuboCop::Cop::Capybara::CssAttributesParser
|
||||||
|
# @api private
|
||||||
|
# @return [CssAttributesParser] a new instance of CssAttributesParser
|
||||||
|
#
|
||||||
|
# source://rubocop-capybara//lib/rubocop/cop/capybara/mixin/css_attributes_parser.rb#9
|
||||||
|
def initialize(selector); end
|
||||||
|
|
||||||
|
# @api private
|
||||||
|
# @return [Array<String>]
|
||||||
|
#
|
||||||
|
# source://rubocop-capybara//lib/rubocop/cop/capybara/mixin/css_attributes_parser.rb#18
|
||||||
|
def parse; end
|
||||||
|
|
||||||
|
private
|
||||||
|
|
||||||
|
# @api private
|
||||||
|
# @example
|
||||||
|
# normalize_value('true') # => true
|
||||||
|
# normalize_value('false') # => false
|
||||||
|
# normalize_value(nil) # => nil
|
||||||
|
# normalize_value("foo") # => "'foo'"
|
||||||
|
# @param value [String]
|
||||||
|
# @return [Boolean, String]
|
||||||
|
#
|
||||||
|
# source://rubocop-capybara//lib/rubocop/cop/capybara/mixin/css_attributes_parser.rb#61
|
||||||
|
def normalize_value(value); end
|
||||||
|
|
||||||
|
# @api private
|
||||||
|
#
|
||||||
|
# source://rubocop-capybara//lib/rubocop/cop/capybara/mixin/css_attributes_parser.rb#42
|
||||||
|
def on_bracket_end; end
|
||||||
|
|
||||||
|
# @api private
|
||||||
|
#
|
||||||
|
# source://rubocop-capybara//lib/rubocop/cop/capybara/mixin/css_attributes_parser.rb#33
|
||||||
|
def on_bracket_start; end
|
||||||
|
end
|
||||||
|
|
||||||
# Helps parsing css selector.
|
# Helps parsing css selector.
|
||||||
#
|
#
|
||||||
# @api private
|
# @api private
|
||||||
@ -280,10 +330,11 @@ module RuboCop::Cop::Capybara::CssSelector
|
|||||||
# attributes('a[foo-bar_baz]') # => {"foo-bar_baz=>nil}
|
# attributes('a[foo-bar_baz]') # => {"foo-bar_baz=>nil}
|
||||||
# attributes('button[foo][bar=baz]') # => {"foo"=>nil, "bar"=>"'baz'"}
|
# attributes('button[foo][bar=baz]') # => {"foo"=>nil, "bar"=>"'baz'"}
|
||||||
# attributes('table[foo=bar]') # => {"foo"=>"'bar'"}
|
# attributes('table[foo=bar]') # => {"foo"=>"'bar'"}
|
||||||
|
# attributes('[foo="bar[baz][qux]"]') # => {"foo"=>"'bar[baz][qux]'"}
|
||||||
# @param selector [String]
|
# @param selector [String]
|
||||||
# @return [Array<String>]
|
# @return [Array<String>]
|
||||||
#
|
#
|
||||||
# source://rubocop-capybara//lib/rubocop/cop/capybara/mixin/css_selector.rb#58
|
# source://rubocop-capybara//lib/rubocop/cop/capybara/mixin/css_selector.rb#59
|
||||||
def attributes(selector); end
|
def attributes(selector); end
|
||||||
|
|
||||||
# @api private
|
# @api private
|
||||||
@ -326,21 +377,9 @@ module RuboCop::Cop::Capybara::CssSelector
|
|||||||
# @param selector [String]
|
# @param selector [String]
|
||||||
# @return [Boolean]
|
# @return [Boolean]
|
||||||
#
|
#
|
||||||
# source://rubocop-capybara//lib/rubocop/cop/capybara/mixin/css_selector.rb#88
|
# source://rubocop-capybara//lib/rubocop/cop/capybara/mixin/css_selector.rb#82
|
||||||
def multiple_selectors?(selector); end
|
def multiple_selectors?(selector); end
|
||||||
|
|
||||||
# @api private
|
|
||||||
# @example
|
|
||||||
# normalize_value('true') # => true
|
|
||||||
# normalize_value('false') # => false
|
|
||||||
# normalize_value(nil) # => nil
|
|
||||||
# normalize_value("foo") # => "'foo'"
|
|
||||||
# @param value [String]
|
|
||||||
# @return [Boolean, String]
|
|
||||||
#
|
|
||||||
# source://rubocop-capybara//lib/rubocop/cop/capybara/mixin/css_selector.rb#100
|
|
||||||
def normalize_value(value); end
|
|
||||||
|
|
||||||
# @api private
|
# @api private
|
||||||
# @example
|
# @example
|
||||||
# pseudo_classes('button:not([disabled])') # => ['not()']
|
# pseudo_classes('button:not([disabled])') # => ['not()']
|
||||||
@ -348,7 +387,7 @@ module RuboCop::Cop::Capybara::CssSelector
|
|||||||
# @param selector [String]
|
# @param selector [String]
|
||||||
# @return [Array<String>]
|
# @return [Array<String>]
|
||||||
#
|
#
|
||||||
# source://rubocop-capybara//lib/rubocop/cop/capybara/mixin/css_selector.rb#74
|
# source://rubocop-capybara//lib/rubocop/cop/capybara/mixin/css_selector.rb#68
|
||||||
def pseudo_classes(selector); end
|
def pseudo_classes(selector); end
|
||||||
|
|
||||||
class << self
|
class << self
|
||||||
@ -367,10 +406,11 @@ module RuboCop::Cop::Capybara::CssSelector
|
|||||||
# attributes('a[foo-bar_baz]') # => {"foo-bar_baz=>nil}
|
# attributes('a[foo-bar_baz]') # => {"foo-bar_baz=>nil}
|
||||||
# attributes('button[foo][bar=baz]') # => {"foo"=>nil, "bar"=>"'baz'"}
|
# attributes('button[foo][bar=baz]') # => {"foo"=>nil, "bar"=>"'baz'"}
|
||||||
# attributes('table[foo=bar]') # => {"foo"=>"'bar'"}
|
# attributes('table[foo=bar]') # => {"foo"=>"'bar'"}
|
||||||
|
# attributes('[foo="bar[baz][qux]"]') # => {"foo"=>"'bar[baz][qux]'"}
|
||||||
# @param selector [String]
|
# @param selector [String]
|
||||||
# @return [Array<String>]
|
# @return [Array<String>]
|
||||||
#
|
#
|
||||||
# source://rubocop-capybara//lib/rubocop/cop/capybara/mixin/css_selector.rb#58
|
# source://rubocop-capybara//lib/rubocop/cop/capybara/mixin/css_selector.rb#59
|
||||||
def attributes(selector); end
|
def attributes(selector); end
|
||||||
|
|
||||||
# @api private
|
# @api private
|
||||||
@ -413,21 +453,9 @@ module RuboCop::Cop::Capybara::CssSelector
|
|||||||
# @param selector [String]
|
# @param selector [String]
|
||||||
# @return [Boolean]
|
# @return [Boolean]
|
||||||
#
|
#
|
||||||
# source://rubocop-capybara//lib/rubocop/cop/capybara/mixin/css_selector.rb#88
|
# source://rubocop-capybara//lib/rubocop/cop/capybara/mixin/css_selector.rb#82
|
||||||
def multiple_selectors?(selector); end
|
def multiple_selectors?(selector); end
|
||||||
|
|
||||||
# @api private
|
|
||||||
# @example
|
|
||||||
# normalize_value('true') # => true
|
|
||||||
# normalize_value('false') # => false
|
|
||||||
# normalize_value(nil) # => nil
|
|
||||||
# normalize_value("foo") # => "'foo'"
|
|
||||||
# @param value [String]
|
|
||||||
# @return [Boolean, String]
|
|
||||||
#
|
|
||||||
# source://rubocop-capybara//lib/rubocop/cop/capybara/mixin/css_selector.rb#100
|
|
||||||
def normalize_value(value); end
|
|
||||||
|
|
||||||
# @api private
|
# @api private
|
||||||
# @example
|
# @example
|
||||||
# pseudo_classes('button:not([disabled])') # => ['not()']
|
# pseudo_classes('button:not([disabled])') # => ['not()']
|
||||||
@ -435,7 +463,7 @@ module RuboCop::Cop::Capybara::CssSelector
|
|||||||
# @param selector [String]
|
# @param selector [String]
|
||||||
# @return [Array<String>]
|
# @return [Array<String>]
|
||||||
#
|
#
|
||||||
# source://rubocop-capybara//lib/rubocop/cop/capybara/mixin/css_selector.rb#74
|
# source://rubocop-capybara//lib/rubocop/cop/capybara/mixin/css_selector.rb#68
|
||||||
def pseudo_classes(selector); end
|
def pseudo_classes(selector); end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@ -571,15 +599,7 @@ RuboCop::Cop::Capybara::MatchStyle::RESTRICT_ON_SEND = T.let(T.unsafe(nil), Arra
|
|||||||
|
|
||||||
# Enforces use of `have_no_*` or `not_to` for negated expectations.
|
# Enforces use of `have_no_*` or `not_to` for negated expectations.
|
||||||
#
|
#
|
||||||
# @example EnforcedStyle: not_to (default)
|
# @example EnforcedStyle: have_no (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
|
# # bad
|
||||||
# expect(page).not_to have_selector
|
# expect(page).not_to have_selector
|
||||||
# expect(page).not_to have_css('a')
|
# expect(page).not_to have_css('a')
|
||||||
@ -587,6 +607,14 @@ RuboCop::Cop::Capybara::MatchStyle::RESTRICT_ON_SEND = T.let(T.unsafe(nil), Arra
|
|||||||
# # good
|
# # good
|
||||||
# expect(page).to have_no_selector
|
# expect(page).to have_no_selector
|
||||||
# expect(page).to have_no_css('a')
|
# expect(page).to have_no_css('a')
|
||||||
|
# @example EnforcedStyle: not_to
|
||||||
|
# # 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')
|
||||||
#
|
#
|
||||||
# source://rubocop-capybara//lib/rubocop/cop/capybara/negation_matcher.rb#26
|
# source://rubocop-capybara//lib/rubocop/cop/capybara/negation_matcher.rb#26
|
||||||
class RuboCop::Cop::Capybara::NegationMatcher < ::RuboCop::Cop::Base
|
class RuboCop::Cop::Capybara::NegationMatcher < ::RuboCop::Cop::Base
|
||||||
@ -872,6 +900,57 @@ end
|
|||||||
# source://rubocop-capybara//lib/rubocop/cop/capybara/rspec/predicate_matcher.rb#244
|
# source://rubocop-capybara//lib/rubocop/cop/capybara/rspec/predicate_matcher.rb#244
|
||||||
RuboCop::Cop::Capybara::RSpec::PredicateMatcher::RESTRICT_ON_SEND = T.let(T.unsafe(nil), Array)
|
RuboCop::Cop::Capybara::RSpec::PredicateMatcher::RESTRICT_ON_SEND = T.let(T.unsafe(nil), Array)
|
||||||
|
|
||||||
|
# Checks for redundant `within find(...)` calls.
|
||||||
|
#
|
||||||
|
# @example
|
||||||
|
# # bad
|
||||||
|
# within find('foo.bar') do
|
||||||
|
# # ...
|
||||||
|
# end
|
||||||
|
#
|
||||||
|
# # good
|
||||||
|
# within 'foo.bar' do
|
||||||
|
# # ...
|
||||||
|
# end
|
||||||
|
#
|
||||||
|
# # bad
|
||||||
|
# within find_by_id('foo') do
|
||||||
|
# # ...
|
||||||
|
# end
|
||||||
|
#
|
||||||
|
# # good
|
||||||
|
# within '#foo' do
|
||||||
|
# # ...
|
||||||
|
# end
|
||||||
|
#
|
||||||
|
# source://rubocop-capybara//lib/rubocop/cop/capybara/redundant_within_find.rb#29
|
||||||
|
class RuboCop::Cop::Capybara::RedundantWithinFind < ::RuboCop::Cop::Base
|
||||||
|
extend ::RuboCop::Cop::AutoCorrector
|
||||||
|
|
||||||
|
# source://rubocop-capybara//lib/rubocop/cop/capybara/redundant_within_find.rb#41
|
||||||
|
def on_send(node); end
|
||||||
|
|
||||||
|
# source://rubocop-capybara//lib/rubocop/cop/capybara/redundant_within_find.rb#36
|
||||||
|
def within_find(param0 = T.unsafe(nil)); end
|
||||||
|
|
||||||
|
private
|
||||||
|
|
||||||
|
# source://rubocop-capybara//lib/rubocop/cop/capybara/redundant_within_find.rb#51
|
||||||
|
def msg(node); end
|
||||||
|
|
||||||
|
# source://rubocop-capybara//lib/rubocop/cop/capybara/redundant_within_find.rb#55
|
||||||
|
def replaced(node); end
|
||||||
|
end
|
||||||
|
|
||||||
|
# source://rubocop-capybara//lib/rubocop/cop/capybara/redundant_within_find.rb#33
|
||||||
|
RuboCop::Cop::Capybara::RedundantWithinFind::FIND_METHODS = T.let(T.unsafe(nil), Set)
|
||||||
|
|
||||||
|
# source://rubocop-capybara//lib/rubocop/cop/capybara/redundant_within_find.rb#31
|
||||||
|
RuboCop::Cop::Capybara::RedundantWithinFind::MSG = T.let(T.unsafe(nil), String)
|
||||||
|
|
||||||
|
# source://rubocop-capybara//lib/rubocop/cop/capybara/redundant_within_find.rb#32
|
||||||
|
RuboCop::Cop::Capybara::RedundantWithinFind::RESTRICT_ON_SEND = T.let(T.unsafe(nil), Array)
|
||||||
|
|
||||||
# Checks for there is a more specific actions offered by Capybara.
|
# Checks for there is a more specific actions offered by Capybara.
|
||||||
#
|
#
|
||||||
# @example
|
# @example
|
||||||
@ -1037,28 +1116,31 @@ class RuboCop::Cop::Capybara::SpecificMatcher < ::RuboCop::Cop::Base
|
|||||||
# source://rubocop-capybara//lib/rubocop/cop/capybara/specific_matcher.rb#41
|
# source://rubocop-capybara//lib/rubocop/cop/capybara/specific_matcher.rb#41
|
||||||
def first_argument(param0 = T.unsafe(nil)); end
|
def first_argument(param0 = T.unsafe(nil)); end
|
||||||
|
|
||||||
# source://rubocop-capybara//lib/rubocop/cop/capybara/specific_matcher.rb#45
|
# source://rubocop-capybara//lib/rubocop/cop/capybara/specific_matcher.rb#50
|
||||||
def on_send(node); end
|
def on_send(node); end
|
||||||
|
|
||||||
|
# source://rubocop-capybara//lib/rubocop/cop/capybara/specific_matcher.rb#46
|
||||||
|
def text_with_regexp?(param0); end
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
# source://rubocop-capybara//lib/rubocop/cop/capybara/specific_matcher.rb#80
|
# source://rubocop-capybara//lib/rubocop/cop/capybara/specific_matcher.rb#86
|
||||||
def good_matcher(node, matcher); end
|
def good_matcher(node, matcher); end
|
||||||
|
|
||||||
# source://rubocop-capybara//lib/rubocop/cop/capybara/specific_matcher.rb#74
|
# source://rubocop-capybara//lib/rubocop/cop/capybara/specific_matcher.rb#80
|
||||||
def message(node, matcher); end
|
def message(node, matcher); end
|
||||||
|
|
||||||
# @return [Boolean]
|
# @return [Boolean]
|
||||||
#
|
#
|
||||||
# source://rubocop-capybara//lib/rubocop/cop/capybara/specific_matcher.rb#62
|
# source://rubocop-capybara//lib/rubocop/cop/capybara/specific_matcher.rb#67
|
||||||
def replaceable?(node, arg, matcher); end
|
def replaceable?(node, arg, matcher); end
|
||||||
|
|
||||||
# @return [Boolean]
|
# @return [Boolean]
|
||||||
#
|
#
|
||||||
# source://rubocop-capybara//lib/rubocop/cop/capybara/specific_matcher.rb#68
|
# source://rubocop-capybara//lib/rubocop/cop/capybara/specific_matcher.rb#74
|
||||||
def replaceable_attributes?(selector); end
|
def replaceable_attributes?(selector); end
|
||||||
|
|
||||||
# source://rubocop-capybara//lib/rubocop/cop/capybara/specific_matcher.rb#57
|
# source://rubocop-capybara//lib/rubocop/cop/capybara/specific_matcher.rb#62
|
||||||
def specific_matcher(arg); end
|
def specific_matcher(arg); end
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -9076,6 +9076,7 @@ module RuboCop::AST::NodePattern::Sets
|
|||||||
SET_ON_INTEL_ON_ARM = ::T.let(nil, ::T.untyped)
|
SET_ON_INTEL_ON_ARM = ::T.let(nil, ::T.untyped)
|
||||||
SET_OR_NEWER_OR_OLDER = ::T.let(nil, ::T.untyped)
|
SET_OR_NEWER_OR_OLDER = ::T.let(nil, ::T.untyped)
|
||||||
SET_SYSTEM_SHELL_OUTPUT_PIPE_OUTPUT = ::T.let(nil, ::T.untyped)
|
SET_SYSTEM_SHELL_OUTPUT_PIPE_OUTPUT = ::T.let(nil, ::T.untyped)
|
||||||
|
SET_TEXT_EXACT_TEXT = ::T.let(nil, ::T.untyped)
|
||||||
SET_WITH_WITHOUT = ::T.let(nil, ::T.untyped)
|
SET_WITH_WITHOUT = ::T.let(nil, ::T.untyped)
|
||||||
SET____ETC_5 = ::T.let(nil, ::T.untyped)
|
SET____ETC_5 = ::T.let(nil, ::T.untyped)
|
||||||
end
|
end
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user