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:
parent
1514e99f4c
commit
5dd48e6643
@ -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
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user