Merge pull request #16440 from Homebrew/dependabot/bundler/Library/Homebrew/rubocop-rspec-2.26.1

build(deps-dev): bump rubocop-rspec from 2.25.0 to 2.26.1 in /Library/Homebrew
This commit is contained in:
Mike McQuaid 2024-01-08 19:05:08 +00:00 committed by GitHub
commit e74dc47d67
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 194 additions and 78 deletions

View File

@ -121,7 +121,7 @@ GEM
rack (>= 1.1) rack (>= 1.1)
rubocop (>= 1.33.0, < 2.0) rubocop (>= 1.33.0, < 2.0)
rubocop-ast (>= 1.30.0, < 2.0) rubocop-ast (>= 1.30.0, < 2.0)
rubocop-rspec (2.25.0) rubocop-rspec (2.26.1)
rubocop (~> 1.40) rubocop (~> 1.40)
rubocop-capybara (~> 2.17) rubocop-capybara (~> 2.17)
rubocop-factory_bot (~> 2.22) rubocop-factory_bot (~> 2.22)

View File

@ -387,41 +387,35 @@ RuboCop::Cop::RSpec::BeNil::BE_NIL_MSG = T.let(T.unsafe(nil), String)
# source://rubocop-rspec//lib/rubocop/cop/rspec/be_nil.rb#33 # source://rubocop-rspec//lib/rubocop/cop/rspec/be_nil.rb#33
RuboCop::Cop::RSpec::BeNil::RESTRICT_ON_SEND = T.let(T.unsafe(nil), Array) RuboCop::Cop::RSpec::BeNil::RESTRICT_ON_SEND = T.let(T.unsafe(nil), Array)
# Check that before/after(:all) isn't being used. # Check that before/after(:all/:context) isn't being used.
# #
# @example # @example
# # bad # # bad - Faster but risk of state leaking between examples
# #
# # Faster but risk of state leaking between examples
# #
# describe MyClass do # describe MyClass do
# before(:all) { Widget.create } # before(:all) { Widget.create }
# after(:all) { Widget.delete_all } # after(:context) { Widget.delete_all }
# end # end
# #
# # good # # good - Slower but examples are properly isolated
# #
# # Slower but examples are properly isolated
# #
# describe MyClass do # describe MyClass do
# before(:each) { Widget.create } # before(:each) { Widget.create }
# after(:each) { Widget.delete_all } # after(:each) { Widget.delete_all }
# end # end
# #
# source://rubocop-rspec//lib/rubocop/cop/rspec/before_after_all.rb#27 # source://rubocop-rspec//lib/rubocop/cop/rspec/before_after_all.rb#21
class RuboCop::Cop::RSpec::BeforeAfterAll < ::RuboCop::Cop::RSpec::Base class RuboCop::Cop::RSpec::BeforeAfterAll < ::RuboCop::Cop::RSpec::Base
# source://rubocop-rspec//lib/rubocop/cop/rspec/before_after_all.rb#36 # source://rubocop-rspec//lib/rubocop/cop/rspec/before_after_all.rb#30
def before_or_after_all(param0 = T.unsafe(nil)); end def before_or_after_all(param0 = T.unsafe(nil)); end
# source://rubocop-rspec//lib/rubocop/cop/rspec/before_after_all.rb#40 # source://rubocop-rspec//lib/rubocop/cop/rspec/before_after_all.rb#34
def on_send(node); end def on_send(node); end
end end
# source://rubocop-rspec//lib/rubocop/cop/rspec/before_after_all.rb#28 # source://rubocop-rspec//lib/rubocop/cop/rspec/before_after_all.rb#22
RuboCop::Cop::RSpec::BeforeAfterAll::MSG = T.let(T.unsafe(nil), String) RuboCop::Cop::RSpec::BeforeAfterAll::MSG = T.let(T.unsafe(nil), String)
# source://rubocop-rspec//lib/rubocop/cop/rspec/before_after_all.rb#33 # source://rubocop-rspec//lib/rubocop/cop/rspec/before_after_all.rb#27
RuboCop::Cop::RSpec::BeforeAfterAll::RESTRICT_ON_SEND = T.let(T.unsafe(nil), Array) RuboCop::Cop::RSpec::BeforeAfterAll::RESTRICT_ON_SEND = T.let(T.unsafe(nil), Set)
# source://rubocop-rspec//lib/rubocop/cop/rspec/capybara/current_path_expectation.rb#6 # source://rubocop-rspec//lib/rubocop/cop/rspec/capybara/current_path_expectation.rb#6
module RuboCop::Cop::RSpec::Capybara; end module RuboCop::Cop::RSpec::Capybara; end
@ -2050,6 +2044,9 @@ RuboCop::Cop::RSpec::ExampleWithoutDescription::MSG_DEFAULT_ARGUMENT = T.let(T.u
# it 'should find nothing' do # it 'should find nothing' do
# end # end
# #
# it 'will find nothing' do
# end
#
# # good # # good
# it 'finds nothing' do # it 'finds nothing' do
# end # end
@ -2071,66 +2068,72 @@ RuboCop::Cop::RSpec::ExampleWithoutDescription::MSG_DEFAULT_ARGUMENT = T.let(T.u
# end # end
# @see http://betterspecs.org/#should # @see http://betterspecs.org/#should
# #
# source://rubocop-rspec//lib/rubocop/cop/rspec/example_wording.rb#46 # source://rubocop-rspec//lib/rubocop/cop/rspec/example_wording.rb#49
class RuboCop::Cop::RSpec::ExampleWording < ::RuboCop::Cop::RSpec::Base class RuboCop::Cop::RSpec::ExampleWording < ::RuboCop::Cop::RSpec::Base
extend ::RuboCop::Cop::AutoCorrector extend ::RuboCop::Cop::AutoCorrector
# source://rubocop-rspec//lib/rubocop/cop/rspec/example_wording.rb#58 # source://rubocop-rspec//lib/rubocop/cop/rspec/example_wording.rb#63
def it_description(param0 = T.unsafe(nil)); end def it_description(param0 = T.unsafe(nil)); end
# source://rubocop-rspec//lib/rubocop/cop/rspec/example_wording.rb#65 # source://rubocop-rspec//lib/rubocop/cop/rspec/example_wording.rb#71
def on_block(node); end def on_block(node); end
private private
# source://rubocop-rspec//lib/rubocop/cop/rspec/example_wording.rb#80 # source://rubocop-rspec//lib/rubocop/cop/rspec/example_wording.rb#89
def add_wording_offense(node, message); end def add_wording_offense(node, message); end
# source://rubocop-rspec//lib/rubocop/cop/rspec/example_wording.rb#127 # source://rubocop-rspec//lib/rubocop/cop/rspec/example_wording.rb#136
def custom_transform; end def custom_transform; end
# source://rubocop-rspec//lib/rubocop/cop/rspec/example_wording.rb#90 # source://rubocop-rspec//lib/rubocop/cop/rspec/example_wording.rb#99
def docstring(node); end def docstring(node); end
# source://rubocop-rspec//lib/rubocop/cop/rspec/example_wording.rb#131 # source://rubocop-rspec//lib/rubocop/cop/rspec/example_wording.rb#140
def ignored_words; end def ignored_words; end
# @return [Boolean] # @return [Boolean]
# #
# source://rubocop-rspec//lib/rubocop/cop/rspec/example_wording.rb#135 # source://rubocop-rspec//lib/rubocop/cop/rspec/example_wording.rb#144
def insufficient_docstring?(description_node); end def insufficient_docstring?(description_node); end
# source://rubocop-rspec//lib/rubocop/cop/rspec/example_wording.rb#139 # source://rubocop-rspec//lib/rubocop/cop/rspec/example_wording.rb#148
def insufficient_examples; end def insufficient_examples; end
# source://rubocop-rspec//lib/rubocop/cop/rspec/example_wording.rb#144 # source://rubocop-rspec//lib/rubocop/cop/rspec/example_wording.rb#153
def preprocess(message); end def preprocess(message); end
# source://rubocop-rspec//lib/rubocop/cop/rspec/example_wording.rb#100 # source://rubocop-rspec//lib/rubocop/cop/rspec/example_wording.rb#109
def replacement_text(node); end def replacement_text(node); end
# Recursive processing is required to process nested dstr nodes # Recursive processing is required to process nested dstr nodes
# that is the case for \-separated multiline strings with interpolation. # that is the case for \-separated multiline strings with interpolation.
# #
# source://rubocop-rspec//lib/rubocop/cop/rspec/example_wording.rb#116 # source://rubocop-rspec//lib/rubocop/cop/rspec/example_wording.rb#125
def text(node); end def text(node); end
end end
# source://rubocop-rspec//lib/rubocop/cop/rspec/example_wording.rb#55 # source://rubocop-rspec//lib/rubocop/cop/rspec/example_wording.rb#60
RuboCop::Cop::RSpec::ExampleWording::IT_PREFIX = T.let(T.unsafe(nil), Regexp) RuboCop::Cop::RSpec::ExampleWording::IT_PREFIX = T.let(T.unsafe(nil), Regexp)
# source://rubocop-rspec//lib/rubocop/cop/rspec/example_wording.rb#51 # source://rubocop-rspec//lib/rubocop/cop/rspec/example_wording.rb#55
RuboCop::Cop::RSpec::ExampleWording::MSG_INSUFFICIENT_DESCRIPTION = T.let(T.unsafe(nil), String) RuboCop::Cop::RSpec::ExampleWording::MSG_INSUFFICIENT_DESCRIPTION = T.let(T.unsafe(nil), String)
# source://rubocop-rspec//lib/rubocop/cop/rspec/example_wording.rb#50 # source://rubocop-rspec//lib/rubocop/cop/rspec/example_wording.rb#54
RuboCop::Cop::RSpec::ExampleWording::MSG_IT = T.let(T.unsafe(nil), String) RuboCop::Cop::RSpec::ExampleWording::MSG_IT = T.let(T.unsafe(nil), String)
# source://rubocop-rspec//lib/rubocop/cop/rspec/example_wording.rb#49 # source://rubocop-rspec//lib/rubocop/cop/rspec/example_wording.rb#52
RuboCop::Cop::RSpec::ExampleWording::MSG_SHOULD = T.let(T.unsafe(nil), String) RuboCop::Cop::RSpec::ExampleWording::MSG_SHOULD = T.let(T.unsafe(nil), String)
# source://rubocop-rspec//lib/rubocop/cop/rspec/example_wording.rb#54 # source://rubocop-rspec//lib/rubocop/cop/rspec/example_wording.rb#53
RuboCop::Cop::RSpec::ExampleWording::MSG_WILL = T.let(T.unsafe(nil), String)
# source://rubocop-rspec//lib/rubocop/cop/rspec/example_wording.rb#58
RuboCop::Cop::RSpec::ExampleWording::SHOULD_PREFIX = T.let(T.unsafe(nil), Regexp) RuboCop::Cop::RSpec::ExampleWording::SHOULD_PREFIX = T.let(T.unsafe(nil), Regexp)
# source://rubocop-rspec//lib/rubocop/cop/rspec/example_wording.rb#59
RuboCop::Cop::RSpec::ExampleWording::WILL_PREFIX = T.let(T.unsafe(nil), Regexp)
# Checks for excessive whitespace in example descriptions. # Checks for excessive whitespace in example descriptions.
# #
# @example # @example
@ -5935,6 +5938,73 @@ RuboCop::Cop::RSpec::RedundantAround::MSG = T.let(T.unsafe(nil), String)
# source://rubocop-rspec//lib/rubocop/cop/rspec/redundant_around.rb#21 # source://rubocop-rspec//lib/rubocop/cop/rspec/redundant_around.rb#21
RuboCop::Cop::RSpec::RedundantAround::RESTRICT_ON_SEND = T.let(T.unsafe(nil), Array) RuboCop::Cop::RSpec::RedundantAround::RESTRICT_ON_SEND = T.let(T.unsafe(nil), Array)
# Checks for redundant predicate matcher.
#
# @example
# # bad
# expect(foo).to be_exist(bar)
# expect(foo).not_to be_include(bar)
#
# # good
# expect(foo).to exist(bar)
# expect(foo).not_to include(bar)
#
# source://rubocop-rspec//lib/rubocop/cop/rspec/redundant_predicate_matcher.rb#17
class RuboCop::Cop::RSpec::RedundantPredicateMatcher < ::RuboCop::Cop::RSpec::Base
extend ::RuboCop::Cop::AutoCorrector
# source://rubocop-rspec//lib/rubocop/cop/rspec/redundant_predicate_matcher.rb#26
def on_send(node); end
private
# source://rubocop-rspec//lib/rubocop/cop/rspec/redundant_predicate_matcher.rb#42
def message(bad_method, good_method); end
# @return [Boolean]
#
# source://rubocop-rspec//lib/rubocop/cop/rspec/redundant_predicate_matcher.rb#46
def replacable_arguments?(node); end
# source://rubocop-rspec//lib/rubocop/cop/rspec/redundant_predicate_matcher.rb#54
def replaced_method_name(method_name); end
end
# source://rubocop-rspec//lib/rubocop/cop/rspec/redundant_predicate_matcher.rb#20
RuboCop::Cop::RSpec::RedundantPredicateMatcher::MSG = T.let(T.unsafe(nil), String)
# source://rubocop-rspec//lib/rubocop/cop/rspec/redundant_predicate_matcher.rb#21
RuboCop::Cop::RSpec::RedundantPredicateMatcher::RESTRICT_ON_SEND = T.let(T.unsafe(nil), Array)
# Checks that `remove_const` is not used in specs.
#
# @example
# # bad
# it 'does something' do
# Object.send(:remove_const, :SomeConstant)
# end
#
# before do
# SomeClass.send(:remove_const, :SomeConstant)
# end
#
# source://rubocop-rspec//lib/rubocop/cop/rspec/remove_const.rb#18
class RuboCop::Cop::RSpec::RemoveConst < ::RuboCop::Cop::RSpec::Base
# Check for offenses
#
# source://rubocop-rspec//lib/rubocop/cop/rspec/remove_const.rb#32
def on_send(node); end
# source://rubocop-rspec//lib/rubocop/cop/rspec/remove_const.rb#27
def remove_const(param0 = T.unsafe(nil)); end
end
# source://rubocop-rspec//lib/rubocop/cop/rspec/remove_const.rb#22
RuboCop::Cop::RSpec::RemoveConst::MSG = T.let(T.unsafe(nil), String)
# source://rubocop-rspec//lib/rubocop/cop/rspec/remove_const.rb#24
RuboCop::Cop::RSpec::RemoveConst::RESTRICT_ON_SEND = T.let(T.unsafe(nil), Array)
# Check for repeated description strings in example groups. # Check for repeated description strings in example groups.
# #
# @example # @example
@ -6566,9 +6636,13 @@ RuboCop::Cop::RSpec::SharedContext::MSG_CONTEXT = T.let(T.unsafe(nil), String)
# source://rubocop-rspec//lib/rubocop/cop/rspec/shared_context.rb#56 # source://rubocop-rspec//lib/rubocop/cop/rspec/shared_context.rb#56
RuboCop::Cop::RSpec::SharedContext::MSG_EXAMPLES = T.let(T.unsafe(nil), String) RuboCop::Cop::RSpec::SharedContext::MSG_EXAMPLES = T.let(T.unsafe(nil), String)
# Enforces use of string to titleize shared examples. # Checks for consistent style for shared example names.
# #
# @example # Enforces either `string` or `symbol` for shared example names.
#
# This cop can be configured using the `EnforcedStyle` option
#
# @example `EnforcedStyle: string` (default)
# # bad # # bad
# it_behaves_like :foo_bar_baz # it_behaves_like :foo_bar_baz
# it_should_behave_like :foo_bar_baz # it_should_behave_like :foo_bar_baz
@ -6582,47 +6656,86 @@ RuboCop::Cop::RSpec::SharedContext::MSG_EXAMPLES = T.let(T.unsafe(nil), String)
# shared_examples 'foo bar baz' # shared_examples 'foo bar baz'
# shared_examples_for 'foo bar baz' # shared_examples_for 'foo bar baz'
# include_examples 'foo bar baz' # include_examples 'foo bar baz'
# @example `EnforcedStyle: symbol`
# # bad
# it_behaves_like 'foo bar baz'
# it_should_behave_like 'foo bar baz'
# shared_examples 'foo bar baz'
# shared_examples_for 'foo bar baz'
# include_examples 'foo bar baz'
# #
# source://rubocop-rspec//lib/rubocop/cop/rspec/shared_examples.rb#23 # # good
# it_behaves_like :foo_bar_baz
# it_should_behave_like :foo_bar_baz
# shared_examples :foo_bar_baz
# shared_examples_for :foo_bar_baz
# include_examples :foo_bar_baz
#
# source://rubocop-rspec//lib/rubocop/cop/rspec/shared_examples.rb#42
class RuboCop::Cop::RSpec::SharedExamples < ::RuboCop::Cop::RSpec::Base class RuboCop::Cop::RSpec::SharedExamples < ::RuboCop::Cop::RSpec::Base
include ::RuboCop::Cop::ConfigurableEnforcedStyle
extend ::RuboCop::Cop::AutoCorrector extend ::RuboCop::Cop::AutoCorrector
# source://rubocop-rspec//lib/rubocop/cop/rspec/shared_examples.rb#34 # source://rubocop-rspec//lib/rubocop/cop/rspec/shared_examples.rb#54
def on_send(node); end def on_send(node); end
# source://rubocop-rspec//lib/rubocop/cop/rspec/shared_examples.rb#27 # source://rubocop-rspec//lib/rubocop/cop/rspec/shared_examples.rb#47
def shared_examples(param0 = T.unsafe(nil)); end def shared_examples(param0 = T.unsafe(nil)); end
private
# source://rubocop-rspec//lib/rubocop/cop/rspec/shared_examples.rb#75
def new_checker(ast_node); end
# @return [Boolean]
#
# source://rubocop-rspec//lib/rubocop/cop/rspec/shared_examples.rb#67
def offense?(ast_node); end
end end
# source://rubocop-rspec//lib/rubocop/cop/rspec/shared_examples.rb#47 # source://rubocop-rspec//lib/rubocop/cop/rspec/shared_examples.rb#104
class RuboCop::Cop::RSpec::SharedExamples::Checker class RuboCop::Cop::RSpec::SharedExamples::StringChecker
# @return [Checker] a new instance of Checker # @return [StringChecker] a new instance of StringChecker
# #
# source://rubocop-rspec//lib/rubocop/cop/rspec/shared_examples.rb#53 # source://rubocop-rspec//lib/rubocop/cop/rspec/shared_examples.rb#110
def initialize(node); end def initialize(node); end
# source://rubocop-rspec//lib/rubocop/cop/rspec/shared_examples.rb#57 # source://rubocop-rspec//lib/rubocop/cop/rspec/shared_examples.rb#114
def message; end def message; end
# Returns the value of attribute node. # Returns the value of attribute node.
# #
# source://rubocop-rspec//lib/rubocop/cop/rspec/shared_examples.rb#51 # source://rubocop-rspec//lib/rubocop/cop/rspec/shared_examples.rb#108
def node; end def node; end
# source://rubocop-rspec//lib/rubocop/cop/rspec/shared_examples.rb#61 # source://rubocop-rspec//lib/rubocop/cop/rspec/shared_examples.rb#118
def preferred_style; end def preferred_style; end
private
# source://rubocop-rspec//lib/rubocop/cop/rspec/shared_examples.rb#68
def symbol; end
# source://rubocop-rspec//lib/rubocop/cop/rspec/shared_examples.rb#72
def wrap_with_single_quotes(string); end
end end
# source://rubocop-rspec//lib/rubocop/cop/rspec/shared_examples.rb#48 # source://rubocop-rspec//lib/rubocop/cop/rspec/shared_examples.rb#105
RuboCop::Cop::RSpec::SharedExamples::Checker::MSG = T.let(T.unsafe(nil), String) RuboCop::Cop::RSpec::SharedExamples::StringChecker::MSG = T.let(T.unsafe(nil), String)
# source://rubocop-rspec//lib/rubocop/cop/rspec/shared_examples.rb#84
class RuboCop::Cop::RSpec::SharedExamples::SymbolChecker
# @return [SymbolChecker] a new instance of SymbolChecker
#
# source://rubocop-rspec//lib/rubocop/cop/rspec/shared_examples.rb#90
def initialize(node); end
# source://rubocop-rspec//lib/rubocop/cop/rspec/shared_examples.rb#94
def message; end
# Returns the value of attribute node.
#
# source://rubocop-rspec//lib/rubocop/cop/rspec/shared_examples.rb#88
def node; end
# source://rubocop-rspec//lib/rubocop/cop/rspec/shared_examples.rb#98
def preferred_style; end
end
# source://rubocop-rspec//lib/rubocop/cop/rspec/shared_examples.rb#85
RuboCop::Cop::RSpec::SharedExamples::SymbolChecker::MSG = T.let(T.unsafe(nil), String)
# Checks that chains of messages contain more than one element. # Checks that chains of messages contain more than one element.
# #
@ -8105,56 +8218,56 @@ RuboCop::RSpec::Version::STRING = T.let(T.unsafe(nil), String)
class RuboCop::RSpec::Wording class RuboCop::RSpec::Wording
# @return [Wording] a new instance of Wording # @return [Wording] a new instance of Wording
# #
# source://rubocop-rspec//lib/rubocop/rspec/wording.rb#12 # source://rubocop-rspec//lib/rubocop/rspec/wording.rb#14
def initialize(text, ignore:, replace:); end def initialize(text, ignore:, replace:); end
# source://rubocop-rspec//lib/rubocop/rspec/wording.rb#18 # source://rubocop-rspec//lib/rubocop/rspec/wording.rb#21
def rewrite; end def rewrite; end
private private
# source://rubocop-rspec//lib/rubocop/rspec/wording.rb#72 # source://rubocop-rspec//lib/rubocop/rspec/wording.rb#80
def append_suffix(word, suffix); end def append_suffix(word, suffix); end
# @return [Boolean] # @return [Boolean]
# #
# source://rubocop-rspec//lib/rubocop/rspec/wording.rb#57 # source://rubocop-rspec//lib/rubocop/rspec/wording.rb#65
def ignored_word?(word); end def ignored_word?(word); end
# Returns the value of attribute ignores. # Returns the value of attribute ignores.
# #
# source://rubocop-rspec//lib/rubocop/rspec/wording.rb#31 # source://rubocop-rspec//lib/rubocop/rspec/wording.rb#39
def ignores; end def ignores; end
# source://rubocop-rspec//lib/rubocop/rspec/wording.rb#43 # source://rubocop-rspec//lib/rubocop/rspec/wording.rb#51
def remove_should_and_pluralize; end def remove_should_and_pluralize; end
# source://rubocop-rspec//lib/rubocop/rspec/wording.rb#33 # source://rubocop-rspec//lib/rubocop/rspec/wording.rb#41
def replace_prefix(pattern, replacement); end def replace_prefix(pattern, replacement); end
# Returns the value of attribute replacements. # Returns the value of attribute replacements.
# #
# source://rubocop-rspec//lib/rubocop/rspec/wording.rb#31 # source://rubocop-rspec//lib/rubocop/rspec/wording.rb#39
def replacements; end def replacements; end
# source://rubocop-rspec//lib/rubocop/rspec/wording.rb#61 # source://rubocop-rspec//lib/rubocop/rspec/wording.rb#69
def substitute(word); end def substitute(word); end
# Returns the value of attribute text. # Returns the value of attribute text.
# #
# source://rubocop-rspec//lib/rubocop/rspec/wording.rb#31 # source://rubocop-rspec//lib/rubocop/rspec/wording.rb#39
def text; end def text; end
# @return [Boolean] # @return [Boolean]
# #
# source://rubocop-rspec//lib/rubocop/rspec/wording.rb#39 # source://rubocop-rspec//lib/rubocop/rspec/wording.rb#47
def uppercase?(word); end def uppercase?(word); end
end end
# source://rubocop-rspec//lib/rubocop/rspec/wording.rb#9 # source://rubocop-rspec//lib/rubocop/rspec/wording.rb#11
RuboCop::RSpec::Wording::ES_SUFFIX_PATTERN = T.let(T.unsafe(nil), Regexp) RuboCop::RSpec::Wording::ES_SUFFIX_PATTERN = T.let(T.unsafe(nil), Regexp)
# source://rubocop-rspec//lib/rubocop/rspec/wording.rb#10 # source://rubocop-rspec//lib/rubocop/rspec/wording.rb#12
RuboCop::RSpec::Wording::IES_SUFFIX_PATTERN = T.let(T.unsafe(nil), Regexp) RuboCop::RSpec::Wording::IES_SUFFIX_PATTERN = T.let(T.unsafe(nil), Regexp)
# source://rubocop-rspec//lib/rubocop/rspec/wording.rb#8 # source://rubocop-rspec//lib/rubocop/rspec/wording.rb#8
@ -8162,3 +8275,9 @@ RuboCop::RSpec::Wording::SHOULDNT_BE_PREFIX = T.let(T.unsafe(nil), Regexp)
# source://rubocop-rspec//lib/rubocop/rspec/wording.rb#7 # source://rubocop-rspec//lib/rubocop/rspec/wording.rb#7
RuboCop::RSpec::Wording::SHOULDNT_PREFIX = T.let(T.unsafe(nil), Regexp) RuboCop::RSpec::Wording::SHOULDNT_PREFIX = T.let(T.unsafe(nil), Regexp)
# source://rubocop-rspec//lib/rubocop/rspec/wording.rb#9
RuboCop::RSpec::Wording::WILL_NOT_PREFIX = T.let(T.unsafe(nil), Regexp)
# source://rubocop-rspec//lib/rubocop/rspec/wording.rb#10
RuboCop::RSpec::Wording::WONT_PREFIX = T.let(T.unsafe(nil), Regexp)

View File

@ -9075,6 +9075,7 @@ module RuboCop::AST::NodePattern::Sets
SET_ON_ARM_ON_INTEL_ON_SONOMA_ETC = ::T.let(nil, ::T.untyped) SET_ON_ARM_ON_INTEL_ON_SONOMA_ETC = ::T.let(nil, ::T.untyped)
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_SEND___SEND__ = ::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_TEXT_EXACT_TEXT = ::T.let(nil, ::T.untyped)
SET_WITH_WITHOUT = ::T.let(nil, ::T.untyped) SET_WITH_WITHOUT = ::T.let(nil, ::T.untyped)

View File

@ -34,7 +34,7 @@ describe Cask::DSL, :cask do
end.to output(expected).to_stderr end.to output(expected).to_stderr
end end
it "will simply warn, not throw an exception" do it "simply warns, instead of throwing an exception" do
expect do expect do
attempt_unknown_method attempt_unknown_method
end.not_to raise_error end.not_to raise_error

View File

@ -476,7 +476,7 @@ describe Cask::Upgrade, :cask do
allow_any_instance_of(described_class).to receive(:verbose?).and_return(true) allow_any_instance_of(described_class).to receive(:verbose?).and_return(true)
end end
it "will not end the upgrade process" do it "does not end the upgrade process" do
bad_checksum = Cask::CaskLoader.load("bad-checksum") bad_checksum = Cask::CaskLoader.load("bad-checksum")
bad_checksum_path = bad_checksum.config.appdir.join("Caffeine.app") bad_checksum_path = bad_checksum.config.appdir.join("Caffeine.app")

View File

@ -220,7 +220,7 @@ describe Homebrew::Completions do
expect(described_class.command_options("help")).to eq({}) expect(described_class.command_options("help")).to eq({})
end end
it "will override global options with local descriptions" do it "overrides global options with local descriptions" do
options = described_class.command_options("upgrade") options = described_class.command_options("upgrade")
expect(options["--verbose"]).to eq "Print the verification and post-install steps." expect(options["--verbose"]).to eq "Print the verification and post-install steps."
end end

View File

@ -163,11 +163,7 @@ describe Requirement do
let(:klass) { self.class.const_get(const) } let(:klass) { self.class.const_get(const) }
before do before do
self.class.const_set(const, Class.new(described_class)) stub_const const.to_s, Class.new(described_class)
end
after do
self.class.send(:remove_const, const)
end end
its(:name) { is_expected.to eq("foo") } its(:name) { is_expected.to eq("foo") }

View File

@ -103,7 +103,7 @@ $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/rubocop-factory_bot-2.25.1/lib") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/rubocop-factory_bot-2.25.1/lib")
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/rubocop-performance-1.20.2/lib") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/rubocop-performance-1.20.2/lib")
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/rubocop-rails-2.23.1/lib") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/rubocop-rails-2.23.1/lib")
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/rubocop-rspec-2.25.0/lib") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/rubocop-rspec-2.26.1/lib")
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/rubocop-sorbet-0.7.6/lib") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/rubocop-sorbet-0.7.6/lib")
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/ruby-macho-4.0.0/lib") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/ruby-macho-4.0.0/lib")
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/extensions/x86_64-darwin-15/#{Gem.extension_api_version}/ruby-prof-1.7.0") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/extensions/x86_64-darwin-15/#{Gem.extension_api_version}/ruby-prof-1.7.0")