Merge pull request #12857 from Homebrew/dependabot/bundler/Library/Homebrew/rspec-3.11.0

build(deps): bump rspec from 3.10.0 to 3.11.0 in /Library/Homebrew
This commit is contained in:
Nanda H Krishna 2022-02-09 14:09:52 -05:00 committed by GitHub
commit b7a69ca5a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 71 additions and 18 deletions

View File

@ -97,28 +97,28 @@ GEM
hpricot (>= 0.8.2) hpricot (>= 0.8.2)
mustache (>= 0.7.0) mustache (>= 0.7.0)
rdiscount (>= 1.5.8) rdiscount (>= 1.5.8)
rspec (3.10.0) rspec (3.11.0)
rspec-core (~> 3.10.0) rspec-core (~> 3.11.0)
rspec-expectations (~> 3.10.0) rspec-expectations (~> 3.11.0)
rspec-mocks (~> 3.10.0) rspec-mocks (~> 3.11.0)
rspec-core (3.10.2) rspec-core (3.11.0)
rspec-support (~> 3.10.0) rspec-support (~> 3.11.0)
rspec-expectations (3.10.2) rspec-expectations (3.11.0)
diff-lcs (>= 1.2.0, < 2.0) diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.10.0) rspec-support (~> 3.11.0)
rspec-github (2.3.1) rspec-github (2.3.1)
rspec-core (~> 3.0) rspec-core (~> 3.0)
rspec-its (1.3.0) rspec-its (1.3.0)
rspec-core (>= 3.0.0) rspec-core (>= 3.0.0)
rspec-expectations (>= 3.0.0) rspec-expectations (>= 3.0.0)
rspec-mocks (3.10.3) rspec-mocks (3.11.0)
diff-lcs (>= 1.2.0, < 2.0) diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.10.0) rspec-support (~> 3.11.0)
rspec-retry (0.6.2) rspec-retry (0.6.2)
rspec-core (> 3.3) rspec-core (> 3.3)
rspec-sorbet (1.8.3) rspec-sorbet (1.8.3)
sorbet-runtime sorbet-runtime
rspec-support (3.10.3) rspec-support (3.11.0)
rspec-wait (0.0.9) rspec-wait (0.0.9)
rspec (>= 3, < 4) rspec (>= 3, < 4)
rspec_junit_formatter (0.5.1) rspec_junit_formatter (0.5.1)

View File

@ -17,6 +17,8 @@ module RSpec
def context(*args, &example_group_block); end def context(*args, &example_group_block); end
def current_example; end def current_example; end
def current_example=(example); end def current_example=(example); end
def current_scope; end
def current_scope=(scope); end
def describe(*args, &example_group_block); end def describe(*args, &example_group_block); end
def example_group(*args, &example_group_block); end def example_group(*args, &example_group_block); end
def fcontext(*args, &example_group_block); end def fcontext(*args, &example_group_block); end
@ -1640,6 +1642,8 @@ module RSpec::Core::MemoizedHelpers
def __init_memoized; end def __init_memoized; end
def __memoized; end def __memoized; end
def enforce_value_expectation(matcher, method_name); end
def matcher_supports_value_expectations?(matcher); end
class << self class << self
def define_helpers_on(example_group); end def define_helpers_on(example_group); end
@ -2037,6 +2041,10 @@ end
RSpec::Core::Ordering::Random::MAX_32_BIT = T.let(T.unsafe(nil), Integer) RSpec::Core::Ordering::Random::MAX_32_BIT = T.let(T.unsafe(nil), Integer)
class RSpec::Core::Ordering::RecentlyModified
def order(list); end
end
class RSpec::Core::Ordering::Registry class RSpec::Core::Ordering::Registry
def initialize(configuration); end def initialize(configuration); end
@ -2470,6 +2478,8 @@ class RSpec::Core::World
def report_filter_message(message); end def report_filter_message(message); end
def reporter; end def reporter; end
def reset; end def reset; end
def rspec_is_quitting; end
def rspec_is_quitting=(_arg0); end
def shared_example_group_registry; end def shared_example_group_registry; end
def source_from_file(path); end def source_from_file(path); end
def syntax_highlighter; end def syntax_highlighter; end

View File

@ -17,6 +17,8 @@ module RSpec
def context(*args, &example_group_block); end def context(*args, &example_group_block); end
def current_example; end def current_example; end
def current_example=(example); end def current_example=(example); end
def current_scope; end
def current_scope=(scope); end
def describe(*args, &example_group_block); end def describe(*args, &example_group_block); end
def example_group(*args, &example_group_block); end def example_group(*args, &example_group_block); end
def fcontext(*args, &example_group_block); end def fcontext(*args, &example_group_block); end
@ -330,6 +332,16 @@ module RSpec::Expectations::Syntax
end end
end end
class RSpec::Expectations::ValueExpectationTarget < ::RSpec::Expectations::ExpectationTarget
def not_to(matcher = T.unsafe(nil), message = T.unsafe(nil), &block); end
def to(matcher = T.unsafe(nil), message = T.unsafe(nil), &block); end
private
def enforce_value_expectation(matcher); end
def supports_value_expectations?(matcher); end
end
module RSpec::Expectations::Version; end module RSpec::Expectations::Version; end
RSpec::Expectations::Version::STRING = T.let(T.unsafe(nil), String) RSpec::Expectations::Version::STRING = T.let(T.unsafe(nil), String)
RSpec::MODULES_TO_AUTOLOAD = T.let(T.unsafe(nil), Hash) RSpec::MODULES_TO_AUTOLOAD = T.let(T.unsafe(nil), Hash)
@ -521,6 +533,7 @@ class RSpec::Matchers::BuiltIn::BaseMatcher
def present_ivars; end def present_ivars; end
def rescued_exception; end def rescued_exception; end
def supports_block_expectations?; end def supports_block_expectations?; end
def supports_value_expectations?; end
private private
@ -719,6 +732,7 @@ class RSpec::Matchers::BuiltIn::Change < ::RSpec::Matchers::BuiltIn::BaseMatcher
def from(value); end def from(value); end
def matches?(event_proc); end def matches?(event_proc); end
def supports_block_expectations?; end def supports_block_expectations?; end
def supports_value_expectations?; end
def to(value); end def to(value); end
private private
@ -746,6 +760,8 @@ class RSpec::Matchers::BuiltIn::ChangeDetails
def message_notation(receiver, message); end def message_notation(receiver, message); end
end end
module RSpec::Matchers::BuiltIn::ChangeDetails::UNDEFINED; end
class RSpec::Matchers::BuiltIn::ChangeFromValue < ::RSpec::Matchers::BuiltIn::SpecificValuesChange class RSpec::Matchers::BuiltIn::ChangeFromValue < ::RSpec::Matchers::BuiltIn::SpecificValuesChange
def initialize(change_details, expected_before); end def initialize(change_details, expected_before); end
@ -766,6 +782,7 @@ class RSpec::Matchers::BuiltIn::ChangeRelatively < ::RSpec::Matchers::BuiltIn::B
def failure_message; end def failure_message; end
def matches?(event_proc); end def matches?(event_proc); end
def supports_block_expectations?; end def supports_block_expectations?; end
def supports_value_expectations?; end
private private
@ -795,6 +812,7 @@ class RSpec::Matchers::BuiltIn::Compound < ::RSpec::Matchers::BuiltIn::BaseMatch
def matcher_1; end def matcher_1; end
def matcher_2; end def matcher_2; end
def supports_block_expectations?; end def supports_block_expectations?; end
def supports_value_expectations?; end
protected protected
@ -811,6 +829,7 @@ class RSpec::Matchers::BuiltIn::Compound < ::RSpec::Matchers::BuiltIn::BaseMatch
def matcher_2_matches?; end def matcher_2_matches?; end
def matcher_is_diffable?(matcher); end def matcher_is_diffable?(matcher); end
def matcher_supports_block_expectations?(matcher); end def matcher_supports_block_expectations?(matcher); end
def matcher_supports_value_expectations?(matcher); end
end end
class RSpec::Matchers::BuiltIn::Compound::And < ::RSpec::Matchers::BuiltIn::Compound class RSpec::Matchers::BuiltIn::Compound::And < ::RSpec::Matchers::BuiltIn::Compound
@ -1180,6 +1199,7 @@ class RSpec::Matchers::BuiltIn::Output < ::RSpec::Matchers::BuiltIn::BaseMatcher
def failure_message_when_negated; end def failure_message_when_negated; end
def matches?(block); end def matches?(block); end
def supports_block_expectations?; end def supports_block_expectations?; end
def supports_value_expectations?; end
def to_stderr; end def to_stderr; end
def to_stderr_from_any_process; end def to_stderr_from_any_process; end
def to_stdout; end def to_stdout; end
@ -1209,6 +1229,7 @@ class RSpec::Matchers::BuiltIn::RaiseError
def failure_message_when_negated; end def failure_message_when_negated; end
def matches?(given_proc, negative_expectation = T.unsafe(nil), &block); end def matches?(given_proc, negative_expectation = T.unsafe(nil), &block); end
def supports_block_expectations?; end def supports_block_expectations?; end
def supports_value_expectations?; end
def with_message(expected_message); end def with_message(expected_message); end
private private
@ -1306,6 +1327,7 @@ class RSpec::Matchers::BuiltIn::SpecificValuesChange < ::RSpec::Matchers::BuiltI
def failure_message; end def failure_message; end
def matches?(event_proc); end def matches?(event_proc); end
def supports_block_expectations?; end def supports_block_expectations?; end
def supports_value_expectations?; end
private private
@ -1352,6 +1374,7 @@ class RSpec::Matchers::BuiltIn::ThrowSymbol
def failure_message_when_negated; end def failure_message_when_negated; end
def matches?(given_proc); end def matches?(given_proc); end
def supports_block_expectations?; end def supports_block_expectations?; end
def supports_value_expectations?; end
private private
@ -1369,6 +1392,7 @@ class RSpec::Matchers::BuiltIn::YieldControl < ::RSpec::Matchers::BuiltIn::BaseM
def failure_message_when_negated; end def failure_message_when_negated; end
def matches?(block); end def matches?(block); end
def supports_block_expectations?; end def supports_block_expectations?; end
def supports_value_expectations?; end
private private
@ -1404,6 +1428,7 @@ class RSpec::Matchers::BuiltIn::YieldSuccessiveArgs < ::RSpec::Matchers::BuiltIn
def failure_message_when_negated; end def failure_message_when_negated; end
def matches?(block); end def matches?(block); end
def supports_block_expectations?; end def supports_block_expectations?; end
def supports_value_expectations?; end
private private
@ -1421,6 +1446,7 @@ class RSpec::Matchers::BuiltIn::YieldWithArgs < ::RSpec::Matchers::BuiltIn::Base
def failure_message_when_negated; end def failure_message_when_negated; end
def matches?(block); end def matches?(block); end
def supports_block_expectations?; end def supports_block_expectations?; end
def supports_value_expectations?; end
private private
@ -1437,6 +1463,7 @@ class RSpec::Matchers::BuiltIn::YieldWithNoArgs < ::RSpec::Matchers::BuiltIn::Ba
def failure_message_when_negated; end def failure_message_when_negated; end
def matches?(block); end def matches?(block); end
def supports_block_expectations?; end def supports_block_expectations?; end
def supports_value_expectations?; end
private private
@ -1499,6 +1526,7 @@ module RSpec::Matchers::DSL::DefaultImplementations
def diffable?; end def diffable?; end
def expects_call_stack_jump?; end def expects_call_stack_jump?; end
def supports_block_expectations?; end def supports_block_expectations?; end
def supports_value_expectations?; end
private private

View File

@ -17,6 +17,8 @@ module RSpec
def context(*args, &example_group_block); end def context(*args, &example_group_block); end
def current_example; end def current_example; end
def current_example=(example); end def current_example=(example); end
def current_scope; end
def current_scope=(scope); end
def describe(*args, &example_group_block); end def describe(*args, &example_group_block); end
def example_group(*args, &example_group_block); end def example_group(*args, &example_group_block); end
def fcontext(*args, &example_group_block); end def fcontext(*args, &example_group_block); end
@ -55,6 +57,12 @@ class RSpec::Mocks::AllowanceTarget < ::RSpec::Mocks::TargetBase
def to_not(matcher, *_args); end def to_not(matcher, *_args); end
end end
class RSpec::Mocks::AndInvokeImplementation
def initialize(procs_to_invoke); end
def call(*args, &block); end
end
class RSpec::Mocks::AndReturnImplementation class RSpec::Mocks::AndReturnImplementation
def initialize(values_to_return); end def initialize(values_to_return); end
@ -783,6 +791,7 @@ class RSpec::Mocks::Matchers::Receive
def initialize(message, block); end def initialize(message, block); end
def and_call_original(*args, &block); end def and_call_original(*args, &block); end
def and_invoke(*args, &block); end
def and_raise(*args, &block); end def and_raise(*args, &block); end
def and_return(*args, &block); end def and_return(*args, &block); end
def and_throw(*args, &block); end def and_throw(*args, &block); end
@ -832,6 +841,7 @@ class RSpec::Mocks::Matchers::ReceiveMessageChain
def initialize(chain, &block); end def initialize(chain, &block); end
def and_call_original(*args, &block); end def and_call_original(*args, &block); end
def and_invoke(*args, &block); end
def and_raise(*args, &block); end def and_raise(*args, &block); end
def and_return(*args, &block); end def and_return(*args, &block); end
def and_throw(*args, &block); end def and_throw(*args, &block); end
@ -896,6 +906,7 @@ class RSpec::Mocks::MessageExpectation
include ::RSpec::Mocks::MessageExpectation::ImplementationDetails include ::RSpec::Mocks::MessageExpectation::ImplementationDetails
def and_call_original; end def and_call_original; end
def and_invoke(first_proc, *procs); end
def and_raise(*args); end def and_raise(*args); end
def and_return(first_value, *values); end def and_return(first_value, *values); end
def and_throw(*args); end def and_throw(*args); end

View File

@ -17,6 +17,8 @@ module RSpec
def context(*args, &example_group_block); end def context(*args, &example_group_block); end
def current_example; end def current_example; end
def current_example=(example); end def current_example=(example); end
def current_scope; end
def current_scope=(scope); end
def describe(*args, &example_group_block); end def describe(*args, &example_group_block); end
def example_group(*args, &example_group_block); end def example_group(*args, &example_group_block); end
def fcontext(*args, &example_group_block); end def fcontext(*args, &example_group_block); end

View File

@ -1,9 +1,9 @@
# typed: true
# DO NOT EDIT MANUALLY # DO NOT EDIT MANUALLY
# This is an autogenerated file for types exported from the `rspec` gem. # This is an autogenerated file for types exported from the `rspec` gem.
# Please instead update this file by running `bin/tapioca gem rspec`. # Please instead update this file by running `bin/tapioca gem rspec`.
# typed: true
module RSpec module RSpec
extend ::RSpec::Support::Warnings extend ::RSpec::Support::Warnings
extend ::RSpec::Core::Warnings extend ::RSpec::Core::Warnings
@ -17,6 +17,8 @@ module RSpec
def context(*args, &example_group_block); end def context(*args, &example_group_block); end
def current_example; end def current_example; end
def current_example=(example); end def current_example=(example); end
def current_scope; end
def current_scope=(scope); end
def describe(*args, &example_group_block); end def describe(*args, &example_group_block); end
def example_group(*args, &example_group_block); end def example_group(*args, &example_group_block); end
def fcontext(*args, &example_group_block); end def fcontext(*args, &example_group_block); end

View File

@ -70,11 +70,11 @@ $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/extensions/x86_64-darwin-1
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rdiscount-2.2.0.2/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rdiscount-2.2.0.2/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rexml-3.2.5/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rexml-3.2.5/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/ronn-0.7.3/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/ronn-0.7.3/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rspec-support-3.10.3/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rspec-support-3.11.0/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rspec-core-3.10.2/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rspec-core-3.11.0/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rspec-expectations-3.10.2/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rspec-expectations-3.11.0/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rspec-mocks-3.10.3/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rspec-mocks-3.11.0/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rspec-3.10.0/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rspec-3.11.0/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rspec-github-2.3.1/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rspec-github-2.3.1/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rspec-its-1.3.0/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rspec-its-1.3.0/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rspec-retry-0.6.2/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rspec-retry-0.6.2/lib"