Merge pull request #14905 from Homebrew/dependabot/bundler/Library/Homebrew/minitest-5.18.0
build(deps): bump minitest from 5.17.0 to 5.18.0 in /Library/Homebrew
This commit is contained in:
commit
715e34a069
@ -57,7 +57,7 @@ GEM
|
||||
mime-types-data (~> 3.2015)
|
||||
mime-types-data (3.2023.0218.1)
|
||||
mini_portile2 (2.8.1)
|
||||
minitest (5.17.0)
|
||||
minitest (5.18.0)
|
||||
msgpack (1.6.1)
|
||||
mustache (1.1.1)
|
||||
net-http-digest_auth (1.4.1)
|
||||
|
||||
@ -69,6 +69,7 @@ module Minitest::Assertions
|
||||
def assert_operator(o1, op, o2 = T.unsafe(nil), msg = T.unsafe(nil)); end
|
||||
def assert_output(stdout = T.unsafe(nil), stderr = T.unsafe(nil)); end
|
||||
def assert_path_exists(path, msg = T.unsafe(nil)); end
|
||||
def assert_pattern; end
|
||||
def assert_predicate(o1, op, msg = T.unsafe(nil)); end
|
||||
def assert_raises(*exp); end
|
||||
def assert_respond_to(obj, meth, msg = T.unsafe(nil)); end
|
||||
@ -98,6 +99,7 @@ module Minitest::Assertions
|
||||
def refute_nil(obj, msg = T.unsafe(nil)); end
|
||||
def refute_operator(o1, op, o2 = T.unsafe(nil), msg = T.unsafe(nil)); end
|
||||
def refute_path_exists(path, msg = T.unsafe(nil)); end
|
||||
def refute_pattern; end
|
||||
def refute_predicate(o1, op, msg = T.unsafe(nil)); end
|
||||
def refute_respond_to(obj, meth, msg = T.unsafe(nil)); end
|
||||
def refute_same(exp, act, msg = T.unsafe(nil)); end
|
||||
@ -4928,6 +4928,8 @@ module Minitest::Expectations
|
||||
|
||||
def must_output(*args); end
|
||||
|
||||
def must_pattern_match(*args); end
|
||||
|
||||
def must_raise(*args); end
|
||||
|
||||
def must_respond_to(*args); end
|
||||
@ -4962,6 +4964,8 @@ module Minitest::Expectations
|
||||
|
||||
def wont_match(*args); end
|
||||
|
||||
def wont_pattern_match(*args); end
|
||||
|
||||
def wont_respond_to(*args); end
|
||||
end
|
||||
|
||||
|
||||
@ -25,7 +25,7 @@ kernel = (class << ::Kernel; self; end)
|
||||
end
|
||||
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/concurrent-ruby-1.2.2/lib/concurrent-ruby")
|
||||
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/i18n-1.12.0/lib")
|
||||
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/minitest-5.17.0/lib")
|
||||
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/minitest-5.18.0/lib")
|
||||
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/tzinfo-2.0.6/lib")
|
||||
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/zeitwerk-2.6.7/lib")
|
||||
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/activesupport-6.1.7.2/lib")
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user