Update RBI files for minitest.

Autogenerated by the [vendor-gems](https://github.com/Homebrew/brew/blob/HEAD/.github/workflows/vendor-gems.yml) workflow.
This commit is contained in:
BrewTestBot 2023-03-07 00:53:25 +00:00
parent 1514e99f4c
commit 5dd48e6643
No known key found for this signature in database
GPG Key ID: 82D7D104050B0F0F
2 changed files with 6 additions and 0 deletions

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