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:
Markus Reiter 2023-03-07 03:54:41 +01:00 committed by GitHub
commit 715e34a069
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 8 additions and 2 deletions

View File

@ -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)

View File

@ -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

View File

@ -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

View File

@ -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")