schema_dot_org 1.7.1 → 1.8

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,108 +0,0 @@
1
- # This file is autogenerated. Do not edit it by hand. Regenerate it with:
2
- # srb rbi sorbet-typed
3
- #
4
- # If you would like to make changes to this file, great! Please upstream any changes you make here:
5
- #
6
- # https://github.com/sorbet/sorbet-typed/edit/master/lib/minitest/all/minitest.rbi
7
- #
8
- # typed: strong
9
-
10
- module Minitest
11
- class Runnable
12
- end
13
-
14
- class Test < Runnable
15
- include Minitest::Assertions
16
- end
17
-
18
- sig { void }
19
- def self.autorun; end
20
-
21
- sig { params(args: T::Array[String]).returns(T::Boolean) }
22
- def self.run(args = []); end
23
- end
24
-
25
- module Minitest::Assertions
26
- extend T::Sig
27
-
28
- sig { params(test: T.untyped, msg: T.nilable(String)).returns(TrueClass) }
29
- def assert(test, msg = nil); end
30
-
31
- sig do
32
- params(
33
- exp: BasicObject,
34
- msg: T.nilable(String)
35
- ).returns(TrueClass)
36
- end
37
- def assert_empty(exp, msg = nil); end
38
-
39
- sig do
40
- params(
41
- exp: BasicObject,
42
- act: BasicObject,
43
- msg: T.nilable(String)
44
- ).returns(TrueClass)
45
- end
46
- def assert_equal(exp, act, msg = nil); end
47
-
48
- sig do
49
- params(
50
- collection: T::Enumerable[T.untyped],
51
- obj: BasicObject,
52
- msg: T.nilable(String)
53
- ).returns(TrueClass)
54
- end
55
- def assert_includes(collection, obj, msg = nil); end
56
-
57
- sig do
58
- params(
59
- obj: BasicObject,
60
- msg: T.nilable(String)
61
- ).returns(TrueClass)
62
- end
63
- def assert_nil(obj, msg = nil); end
64
-
65
- sig do
66
- params(
67
- exp: T.untyped
68
- ).returns(TrueClass)
69
- end
70
- def assert_raises(*exp); end
71
-
72
- sig { params(test: T.untyped, msg: T.nilable(String)).returns(TrueClass) }
73
- def refute(test, msg = nil); end
74
-
75
- sig do
76
- params(
77
- exp: BasicObject,
78
- msg: T.nilable(String)
79
- ).returns(TrueClass)
80
- end
81
- def refute_empty(exp, msg = nil); end
82
-
83
- sig do
84
- params(
85
- exp: BasicObject,
86
- act: BasicObject,
87
- msg: T.nilable(String)
88
- ).returns(TrueClass)
89
- end
90
- def refute_equal(exp, act, msg = nil); end
91
-
92
- sig do
93
- params(
94
- collection: T::Enumerable[T.untyped],
95
- obj: BasicObject,
96
- msg: T.nilable(String)
97
- ).returns(TrueClass)
98
- end
99
- def refute_includes(collection, obj, msg = nil); end
100
-
101
- sig do
102
- params(
103
- obj: BasicObject,
104
- msg: T.nilable(String)
105
- ).returns(TrueClass)
106
- end
107
- def refute_nil(obj, msg = nil); end
108
- end