-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
.rubocop-minitest.yml
240 lines (202 loc) · 8.84 KB
/
.rubocop-minitest.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
Minitest:
Enabled: true
Include:
- '**/test/**/*'
- '**/*_test.rb'
Minitest/AssertEmpty:
Description: 'This cop enforces the test to use `assert_empty` instead of using `assert(object.empty?)`.'
StyleGuide: 'https://minitest.rubystyle.guide#assert-empty'
Enabled: true
VersionAdded: '0.2'
Minitest/AssertEmptyLiteral:
Description: 'This cop enforces the test to use `assert_empty` instead of using `assert_equal([], object)`.'
Enabled: true
VersionAdded: '0.5'
VersionChanged: '0.11'
Minitest/AssertEqual:
Description: 'This cop enforces the test to use `assert_equal` instead of using `assert(expected == actual)`.'
StyleGuide: 'https://minitest.rubystyle.guide#assert-equal-arguments-order'
Enabled: true
VersionAdded: '0.4'
Minitest/AssertInDelta:
Description: 'This cop enforces the test to use `assert_in_delta` instead of using `assert_equal` to compare floats.'
StyleGuide: 'https://minitest.rubystyle.guide/#assert-in-delta'
Enabled: true
VersionAdded: '0.10'
Minitest/AssertIncludes:
Description: 'This cop enforces the test to use `assert_includes` instead of using `assert(collection.include?(object))`.'
StyleGuide: 'https://minitest.rubystyle.guide#assert-includes'
Enabled: true
VersionAdded: '0.2'
Minitest/AssertInstanceOf:
Description: 'This cop enforces the test to use `assert_instance_of(Class, object)` over `assert(object.instance_of?(Class))`'
StyleGuide: 'https://minitest.rubystyle.guide#assert-instance-of'
Enabled: true
VersionAdded: '0.4'
Minitest/AssertKindOf:
Description: 'This cop enforces the test to use `assert_kind_of(Class, object)` over `assert(object.kind_of?(Class))`'
StyleGuide: 'https://github.com/rubocop/minitest-style-guide#assert-kind-of'
Enabled: true
VersionAdded: '0.10'
Minitest/AssertMatch:
Description: 'This cop enforces the test to use `assert_match` instead of using `assert(matcher.match(object))`.'
StyleGuide: 'https://minitest.rubystyle.guide#assert-match'
Enabled: true
VersionAdded: '0.6'
Minitest/AssertNil:
Description: 'This cop enforces the test to use `assert_nil` instead of using `assert_equal(nil, something)` or `assert(something.nil?)`.'
StyleGuide: 'https://minitest.rubystyle.guide#assert-nil'
Enabled: true
VersionAdded: '0.1'
Minitest/AssertOutput:
Description: 'This cop checks for opportunities to use `assert_output`.'
StyleGuide: 'https://minitest.rubystyle.guide/#assert-output'
Enabled: true
VersionAdded: '0.10'
Minitest/AssertPathExists:
Description: 'This cop enforces the test to use `assert_path_exists` instead of using `assert(File.exist?(path))`.'
StyleGuide: 'https://minitest.rubystyle.guide/#assert-path-exists'
Enabled: true
VersionAdded: '0.10'
Minitest/AssertPredicate:
Description: 'This cop enforces the test to use `assert_predicate` instead of using `assert(obj.a_predicate_method?)`.'
StyleGuide: 'https://minitest.rubystyle.guide/#assert-predicate'
Enabled: true
VersionAdded: '0.18'
Minitest/AssertRespondTo:
Description: 'This cop enforces the test to use `assert_respond_to(object, :do_something)` over `assert(object.respond_to?(:do_something))`.'
StyleGuide: 'https://minitest.rubystyle.guide#assert-responds-to-method'
Enabled: true
VersionAdded: '0.3'
Minitest/AssertSilent:
Description: "This cop enforces the test to use `assert_silent { ... }` instead of using `assert_output('', '') { ... }`."
StyleGuide: 'https://github.com/rubocop/minitest-style-guide#assert-silent'
Enabled: true
VersionAdded: '0.10'
Minitest/AssertTruthy:
Description: 'This cop enforces the test to use `assert(actual)` instead of using `assert_equal(true, actual)`.'
StyleGuide: 'https://minitest.rubystyle.guide#assert-truthy'
Enabled: true
VersionAdded: '0.2'
Minitest/AssertWithExpectedArgument:
Description: 'This cop tries to detect when a user accidentally used `assert` when they meant to use `assert_equal`.'
Enabled: true
Safe: false
VersionAdded: '0.11'
Minitest/AssertionInLifecycleHook:
Description: 'This cop checks for usage of assertions in lifecycle hooks.'
Enabled: true
VersionAdded: '0.10'
Minitest/DuplicateTestRun:
Description: 'This cop detects duplicate test runs caused by one test class inheriting from another.'
StyleGuide: 'https://minitest.rubystyle.guide/#subclassing-test-cases'
Enabled: true
VersionAdded: '0.19'
Minitest/GlobalExpectations:
Description: 'This cop checks for deprecated global expectations.'
StyleGuide: 'https://minitest.rubystyle.guide#global-expectations'
Enabled: true
EnforcedStyle: any
Include:
- '**/test/**/*'
- '**/*_test.rb'
- '**/spec/**/*'
- '**/*_spec.rb'
SupportedStyles:
- _
- any
- expect
- value
VersionAdded: '0.7'
VersionChanged: '0.16'
Minitest/LiteralAsActualArgument:
Description: 'This cop enforces correct order of `expected` and `actual` arguments for `assert_equal`.'
StyleGuide: 'https://minitest.rubystyle.guide/#assert-equal-arguments-order'
Enabled: true
VersionAdded: '0.10'
Minitest/MultipleAssertions:
Description: 'This cop checks if test cases contain too many assertion calls.'
Enabled: true
VersionAdded: '0.10'
Max: 3
Minitest/NoAssertions:
Description: 'This cop checks for at least one assertion (or flunk) in tests.'
Enabled: false
VersionAdded: '0.12'
Minitest/RefuteEmpty:
Description: 'This cop enforces to use `refute_empty` instead of using `refute(object.empty?)`.'
StyleGuide: 'https://minitest.rubystyle.guide#refute-empty'
Enabled: true
VersionAdded: '0.3'
Minitest/RefuteEqual:
Description: 'Check if your test uses `refute_equal` instead of `assert(expected != object)` or `assert(! expected == object))`.'
StyleGuide: 'https://minitest.rubystyle.guide#refute-equal'
Enabled: true
VersionAdded: '0.3'
Minitest/RefuteFalse:
Description: 'Check if your test uses `refute(actual)` instead of `assert_equal(false, actual)`.'
StyleGuide: 'https://minitest.rubystyle.guide#refute-false'
Enabled: true
VersionAdded: '0.3'
Minitest/RefuteInDelta:
Description: 'This cop enforces the test to use `refute_in_delta` instead of using `refute_equal` to compare floats.'
StyleGuide: 'https://minitest.rubystyle.guide/#refute-in-delta'
Enabled: true
VersionAdded: '0.10'
Minitest/RefuteIncludes:
Description: 'This cop enforces the test to use `refute_includes` instead of using `refute(collection.include?(object))`.'
StyleGuide: 'https://minitest.rubystyle.guide#refute-includes'
Enabled: true
VersionAdded: '0.3'
Minitest/RefuteInstanceOf:
Description: 'This cop enforces the test to use `refute_instance_of(Class, object)` over `refute(object.instance_of?(Class))`.'
StyleGuide: 'https://minitest.rubystyle.guide#refute-instance-of'
Enabled: true
VersionAdded: '0.4'
Minitest/RefuteKindOf:
Description: 'This cop enforces the test to use `refute_kind_of(Class, object)` over `refute(object.kind_of?(Class))`.'
StyleGuide: 'https://github.com/rubocop/minitest-style-guide#refute-kind-of'
Enabled: true
VersionAdded: '0.10'
Minitest/RefuteMatch:
Description: 'This cop enforces the test to use `refute_match` instead of using `refute(matcher.match(object))`.'
StyleGuide: 'https://minitest.rubystyle.guide#refute-match'
Enabled: true
VersionAdded: '0.6'
Minitest/RefuteNil:
Description: 'This cop enforces the test to use `refute_nil` instead of using `refute_equal(nil, something)` or `refute(something.nil?)`.'
StyleGuide: 'https://minitest.rubystyle.guide#refute-nil'
Enabled: true
VersionAdded: '0.2'
Minitest/RefutePathExists:
Description: 'This cop enforces the test to use `refute_path_exists` instead of using `refute(File.exist?(path))`.'
StyleGuide: 'https://minitest.rubystyle.guide/#refute-path-exists'
Enabled: true
VersionAdded: '0.10'
Minitest/RefutePredicate:
Description: 'This cop enforces the test to use `refute_predicate` instead of using `refute(obj.a_predicate_method?)`.'
StyleGuide: 'https://minitest.rubystyle.guide/#refute-predicate'
Enabled: true
VersionAdded: '0.18'
Minitest/RefuteRespondTo:
Description: 'This cop enforces the test to use `refute_respond_to(object, :do_something)` over `refute(object.respond_to?(:do_something))`.'
StyleGuide: 'https://minitest.rubystyle.guide#refute-respond-to'
Enabled: true
VersionAdded: '0.4'
Minitest/SkipEnsure:
Description: 'Checks that `ensure` call even if `skip`.'
Enabled: true
VersionAdded: '0.20'
Minitest/TestMethodName:
Description: 'This cop enforces that test method names start with `test_` prefix.'
Enabled: true
VersionAdded: '0.10'
Minitest/UnreachableAssertion:
Description: 'This cop checks for an `assert_raises` block containing any unreachable assertions.'
Enabled: true
VersionAdded: '0.14'
Minitest/UnspecifiedException:
Description: 'This cop checks for a specified error in `assert_raises`.'
StyleGuide: 'https://minitest.rubystyle.guide#unspecified-exception'
Enabled: true
VersionAdded: '0.10'