minitest 5.16.2 → 6.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/History.rdoc +373 -1
- data/Manifest.txt +16 -4
- data/README.rdoc +48 -118
- data/Rakefile +17 -2
- data/bin/minitest +5 -0
- data/design_rationale.rb +21 -19
- data/lib/hoe/minitest.rb +4 -2
- data/lib/minitest/assertions.rb +142 -124
- data/lib/minitest/autorun.rb +3 -11
- data/lib/minitest/benchmark.rb +9 -12
- data/lib/minitest/bisect.rb +304 -0
- data/lib/minitest/complete.rb +56 -0
- data/lib/minitest/compress.rb +94 -0
- data/lib/minitest/error_on_warning.rb +11 -0
- data/lib/minitest/expectations.rb +18 -0
- data/lib/minitest/find_minimal_combination.rb +127 -0
- data/lib/minitest/hell.rb +1 -1
- data/lib/minitest/manual_plugins.rb +4 -0
- data/lib/minitest/parallel.rb +10 -8
- data/lib/minitest/path_expander.rb +432 -0
- data/lib/minitest/pride.rb +2 -2
- data/lib/minitest/pride_plugin.rb +17 -24
- data/lib/minitest/server.rb +49 -0
- data/lib/minitest/server_plugin.rb +88 -0
- data/lib/minitest/spec.rb +27 -46
- data/lib/minitest/sprint.rb +105 -0
- data/lib/minitest/sprint_plugin.rb +39 -0
- data/lib/minitest/test.rb +32 -52
- data/lib/minitest/test_task.rb +68 -42
- data/lib/minitest.rb +361 -215
- data/test/minitest/metametameta.rb +33 -19
- data/test/minitest/test_bisect.rb +249 -0
- data/test/minitest/test_find_minimal_combination.rb +138 -0
- data/test/minitest/test_minitest_assertions.rb +311 -173
- data/test/minitest/test_minitest_benchmark.rb +15 -1
- data/test/minitest/test_minitest_reporter.rb +148 -23
- data/test/minitest/test_minitest_spec.rb +157 -132
- data/test/minitest/test_minitest_test.rb +270 -204
- data/test/minitest/test_minitest_test_task.rb +18 -7
- data/test/minitest/test_path_expander.rb +229 -0
- data/test/minitest/test_server.rb +146 -0
- data.tar.gz.sig +2 -2
- metadata +97 -37
- metadata.gz.sig +0 -0
- data/.autotest +0 -34
- data/lib/minitest/mock.rb +0 -323
- data/lib/minitest/unit.rb +0 -42
- data/test/minitest/test_minitest_mock.rb +0 -1139
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3cef62fc91f5ae9128c4ae7c9b91645b26776921ae38e8cfdec016ebcf211055
|
|
4
|
+
data.tar.gz: 0e690cc45bba5de6d08add5fd0ba898e7b0eaa9dc48ce4f4e8b2042e5989e921
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 92c632765b48431ea163a93dc4ae80440c38c6964cbbfccba861e32ab4f7530ed5651d6d3adcbfa45f126eaad9df7b09b3744229c05de529ff76770965b1c871
|
|
7
|
+
data.tar.gz: 8598ca82c49794072035669c2cc8e9b586c18187d08d1ab53c1d503c09bfdadf58af05f70c02437a6e93df4dc14050b59ff16cf020641ca7684dadd900eaa3ad
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/History.rdoc
CHANGED
|
@@ -1,3 +1,375 @@
|
|
|
1
|
+
=== 6.0.4 / 2026-04-14
|
|
2
|
+
|
|
3
|
+
* 1 bug fix:
|
|
4
|
+
|
|
5
|
+
* Fixed refute_predicate to call assert_respond_to w/ include_all:true like assert_predicate does. (jparker)
|
|
6
|
+
|
|
7
|
+
=== 6.0.3 / 2026-03-31
|
|
8
|
+
|
|
9
|
+
* 1 bug fix:
|
|
10
|
+
|
|
11
|
+
* assert_same(nil, value) no longer allowed. Use assert_nil to be explicit. (paddor)
|
|
12
|
+
|
|
13
|
+
=== 6.0.2 / 2026-02-23
|
|
14
|
+
|
|
15
|
+
* 7 bug fixes:
|
|
16
|
+
|
|
17
|
+
* Added missing drb dependency from minitest-server. (y-yagi)
|
|
18
|
+
* Cleaned up bisect's sub-commands to load files directly, not ruby+require.
|
|
19
|
+
* Fixed bisect to use same cmd ($0) to run tests as original invocation.
|
|
20
|
+
* load server_plugin if server is loaded. (y-yagi)
|
|
21
|
+
* Manipulate local args instead of ARGV in Sprint.run.
|
|
22
|
+
* Only show --bisect in usage if using minitest.
|
|
23
|
+
* Remove -Itest:lib from bisect's rb_flags since bin/minitest adds them.
|
|
24
|
+
|
|
25
|
+
=== 6.0.1 / 2025-12-26
|
|
26
|
+
|
|
27
|
+
* 1 minor enhancement:
|
|
28
|
+
|
|
29
|
+
* Added new rake task `test:fu` to Minitest::TestTask, to only run
|
|
30
|
+
tests with FU (focused units?) in their name. This should mostly
|
|
31
|
+
obviate the need for the minitest-focus plugin.
|
|
32
|
+
|
|
33
|
+
* 5 bug fixes:
|
|
34
|
+
|
|
35
|
+
* Fixed --help and --version exiting 1. (grosser)
|
|
36
|
+
* Fixed method signature of Minitest::Benchmark.run. (flavorjones)
|
|
37
|
+
* Flush stdout/stderr before exit./bin/minitest -Ilib ./bug1046.rb:1 < /dev/null (grosser)
|
|
38
|
+
* Improved usage banner output by reordering and reformatting.
|
|
39
|
+
* Normalize paths while processing file.rb:line args.
|
|
40
|
+
|
|
41
|
+
=== 6.0.0 / 2025-12-17
|
|
42
|
+
|
|
43
|
+
This is a major release. Read this.
|
|
44
|
+
|
|
45
|
+
Please give feedback here: https://github.com/minitest/minitest/issues/1040
|
|
46
|
+
|
|
47
|
+
Oh god... here we go... (again)
|
|
48
|
+
|
|
49
|
+
* 8 deaths in the family(!!):
|
|
50
|
+
|
|
51
|
+
* Deleted MiniTest and MiniTest::Unit::TestCase compatibility namespaces.
|
|
52
|
+
* Deleted all use of Marshal for serialization.
|
|
53
|
+
* Deleted maglev? and rubinius? guard methods. LOL.
|
|
54
|
+
* Deleted all minitest/spec expectations from Object. Use _/value/expect.
|
|
55
|
+
* Dropped minitest/mock.rb. This has been extracted to the minitest-mock gem.
|
|
56
|
+
* assert_equal(nil, value) no longer allowed. Use assert_nil to be explicit.
|
|
57
|
+
* Removed assert_send. Use assert_predicate or assert_operator.
|
|
58
|
+
* Removed Minitest::Test#class_name.
|
|
59
|
+
|
|
60
|
+
* 7 major (oft incompatible) changes:
|
|
61
|
+
|
|
62
|
+
* Big: Major refactored MT6's run path!
|
|
63
|
+
* Minitest.__run -> Minitest.run_all_suites
|
|
64
|
+
* Runnable.run -> Runnable.run_suite & Runnable.filter_runnable_methods
|
|
65
|
+
* Runnable.run_one_method -> Runnable.run
|
|
66
|
+
* Removed Minitest.run_one_method (might bring it back to raise?)
|
|
67
|
+
* Removed deprecated <tt>ENV["N"]</tt> to specify number of parallel tests. Use MT_CPU.
|
|
68
|
+
* Renamed +options[:filter]+ to +options[:include]+, added <tt>--include</tt> cmdline option.
|
|
69
|
+
* <tt>--name</tt> is still handled, but that will be removed in the future.
|
|
70
|
+
* Renamed Minitest::Runnable#test_order to #run_order.
|
|
71
|
+
* If #message is passed a proc then that proc overrides all other output.
|
|
72
|
+
* They are no longer chained!
|
|
73
|
+
* And it does less for formatting of your output.
|
|
74
|
+
* Removed reporter arg from with_info_handler as it has never(?) been used. (HACK?)
|
|
75
|
+
* Plugin loading is now opt-in!
|
|
76
|
+
* Require the plugin in your test_helper.
|
|
77
|
+
* Or use Minitest.load :x
|
|
78
|
+
* Or call Minitest.load_plugins for the old autoloading behavior.
|
|
79
|
+
|
|
80
|
+
* 5 additions:
|
|
81
|
+
|
|
82
|
+
* Added minitest-sprint's minitest cmdline, now with line support!
|
|
83
|
+
* Added minitest-bisect. Run with minitest --bisect or -b.
|
|
84
|
+
* Added minitest-server.
|
|
85
|
+
* Added minitest/complete to help with shell's tab-completion of tests.
|
|
86
|
+
* Vendored latest version of path_expander.
|
|
87
|
+
|
|
88
|
+
* 5 other:
|
|
89
|
+
|
|
90
|
+
* Bumped to ruby 3.2+.
|
|
91
|
+
* Removed obsolete conditional for CompositeReporter#prerecord.
|
|
92
|
+
* Removed obsolete version guards around Minitest::Result in reporters.
|
|
93
|
+
* assert_operator and assert_predicate both call assert_respond_to first.
|
|
94
|
+
* Assertions reuse themselves a lot more. Bumps assertion count in some places.
|
|
95
|
+
|
|
96
|
+
=== 5.27.0 / 2025-12-11
|
|
97
|
+
|
|
98
|
+
* 1 major enhancement:
|
|
99
|
+
|
|
100
|
+
* Adding post install message announcing the EOL for minitest 5!
|
|
101
|
+
|
|
102
|
+
* 2 minor enhancements:
|
|
103
|
+
|
|
104
|
+
* Removed TestTask::Work#initialize since Queue can now initialize with an Enumerable! AMAZING!
|
|
105
|
+
* Use Kernel#warn uplevel argument for nicer warnings. (byroot)
|
|
106
|
+
|
|
107
|
+
* 5 bug fixes:
|
|
108
|
+
|
|
109
|
+
* Cleaned up option aliasing a tad.
|
|
110
|
+
* Removed obsolete conditional for prerecord
|
|
111
|
+
* Removed obsolete guards around Warning.
|
|
112
|
+
* Removed obsolete version guards for pattern matching assertions.
|
|
113
|
+
* Switched all internal requires to require_relative.
|
|
114
|
+
|
|
115
|
+
=== 5.26.2 / 2025-11-17
|
|
116
|
+
|
|
117
|
+
* 5 bug fixes:
|
|
118
|
+
|
|
119
|
+
* Bumped minimum ruby to 3.1.
|
|
120
|
+
* Alias Spec#name to #inspect for cleaner output in repls.
|
|
121
|
+
* Fix pathing for Hoe::Minitest initialization to be more generic.
|
|
122
|
+
* Fixed refute_in_epsilon to use min of abs values. (wtn)
|
|
123
|
+
* Improved options processing and usage output to be more clear.
|
|
124
|
+
|
|
125
|
+
=== 5.26.1 / 2025-11-08
|
|
126
|
+
|
|
127
|
+
The Ocean Shores, Slightly Less Tipsy Edition!
|
|
128
|
+
|
|
129
|
+
* 3 bug fixes:
|
|
130
|
+
|
|
131
|
+
* Add links to API doco in README.
|
|
132
|
+
* Add missing require thread.
|
|
133
|
+
* Bumped ruby version to include 4.0 (trunk). (hsbt)
|
|
134
|
+
(see also 5.14.2)
|
|
135
|
+
|
|
136
|
+
=== 5.26.0 / 2025-10-07
|
|
137
|
+
|
|
138
|
+
The Seattle.rb Nerd Party, Slightly Tipsy Edition!
|
|
139
|
+
|
|
140
|
+
* 2 minor enhancements:
|
|
141
|
+
|
|
142
|
+
* Added extra documentation to Minitest::TestTask options.
|
|
143
|
+
* Make parallelize_me! a no-op when n_threads=1.
|
|
144
|
+
|
|
145
|
+
* 9 bug fixes:
|
|
146
|
+
|
|
147
|
+
* Bypass parallel_executor entirely when n_threads=1.
|
|
148
|
+
* Don't require rubygems in Rakefile... it is 2025.
|
|
149
|
+
* Ensure that minitest exits non-zero on Interrupt. (tavianator)
|
|
150
|
+
* Fix Minitest.run sequence rdoc to include loop vars and read consistently.
|
|
151
|
+
* Fix call to parallel_executor.shutdown when it isn't defined.
|
|
152
|
+
* Removed some 1.8/1.9-based code from the assertions and expectations.
|
|
153
|
+
* Still fighting with rdoc? Yup. Still fighting with rdoc...
|
|
154
|
+
* Switched assert_equal's diff from Tempfile.open to Tempfile.create.
|
|
155
|
+
* Use Regexp.escape for BASE_RE in case pwd has special chars. (astra_1993)
|
|
156
|
+
|
|
157
|
+
=== 5.25.5 / 2025-03-12
|
|
158
|
+
|
|
159
|
+
* 4 bug fixes:
|
|
160
|
+
|
|
161
|
+
* Bumped minimum ruby to 2.7.
|
|
162
|
+
* Fixed expectation docs for must/wont_pattern_match. (jaredcwhite)
|
|
163
|
+
* Reorder Minitest::Test.ancestors to allow reaching Minitest::Assertions#skipped? (Edouard-chin)
|
|
164
|
+
* Update the ruby and rails compatibility tables. (bquorning)
|
|
165
|
+
|
|
166
|
+
=== 5.25.4 / 2024-12-03
|
|
167
|
+
|
|
168
|
+
* 1 bug fix:
|
|
169
|
+
|
|
170
|
+
* Fix for must_verify definition if only requiring minitest/mock (but why?).
|
|
171
|
+
|
|
172
|
+
=== 5.25.3 / 2024-12-03
|
|
173
|
+
|
|
174
|
+
* 5 bug fixes:
|
|
175
|
+
|
|
176
|
+
* Fixed assert_mock to fail instead of raise on unmet mock expectations.
|
|
177
|
+
* Fixed assert_mock to take an optional message argument.
|
|
178
|
+
* Fixed formatting of unmet mock expectation messages.
|
|
179
|
+
* Fixed missing must_verify expectation to match assert_mock.
|
|
180
|
+
* minitest/pride: Fixed to use true colors with *-direct terminals (bk2204)
|
|
181
|
+
|
|
182
|
+
=== 5.25.2 / 2024-11-21
|
|
183
|
+
|
|
184
|
+
* 4 bug fixes:
|
|
185
|
+
|
|
186
|
+
* Include class name in spec name. (thomasmarshall)
|
|
187
|
+
* Fixed 'redefining object_id' warning from ruby 3.4. (mattbrictson)
|
|
188
|
+
* Minitest top-level namespace no longer includes entire contents of README.rdoc. Too much!
|
|
189
|
+
* Refactored spec's describe to more cleanly determine the superclass and name
|
|
190
|
+
|
|
191
|
+
=== 5.25.1 / 2024-08-16
|
|
192
|
+
|
|
193
|
+
* 2 bug fixes:
|
|
194
|
+
|
|
195
|
+
* Fix incompatibility caused by minitest-hooks & rails invading minitest internals.
|
|
196
|
+
* Revert change from =~ to match? to allow for nil if $TERM undefined.
|
|
197
|
+
|
|
198
|
+
=== 5.25.0 / 2024-08-13
|
|
199
|
+
|
|
200
|
+
* 2 minor enhancements:
|
|
201
|
+
|
|
202
|
+
* Fixed some inefficiencies filtering and matching (mostly backtraces).
|
|
203
|
+
* Refactored siginfo handler to reduce runtime costs. Saved ~30%!
|
|
204
|
+
|
|
205
|
+
* 5 bug fixes:
|
|
206
|
+
|
|
207
|
+
* Added missing rdoc to get back to 100% coverage.
|
|
208
|
+
* Cleaning up ancient code checking for defined?(Encoding) and the like.
|
|
209
|
+
* Disambiguated some shadowed variables in minitest/compress.
|
|
210
|
+
* Fixed an ironic bug if using string-literals AND Werror.
|
|
211
|
+
* Improve description of test:slow task. (stomar)
|
|
212
|
+
|
|
213
|
+
=== 5.24.1 / 2024-06-29
|
|
214
|
+
|
|
215
|
+
* 1 bug fix:
|
|
216
|
+
|
|
217
|
+
* Fix the error message when an extension is invalid value. (y-yagi)
|
|
218
|
+
|
|
219
|
+
=== 5.24.0 / 2024-06-18
|
|
220
|
+
|
|
221
|
+
* 2 minor enhancements:
|
|
222
|
+
|
|
223
|
+
* Added Minitest.register_plugin.
|
|
224
|
+
* Extended plugin system to work with modules/classes for opt-out plugins.
|
|
225
|
+
|
|
226
|
+
* 1 bug fix:
|
|
227
|
+
|
|
228
|
+
* Removed anacronism, but allow load_plugins to exit gracefully if --disable=gems.
|
|
229
|
+
|
|
230
|
+
=== 5.23.1 / 2024-05-21
|
|
231
|
+
|
|
232
|
+
* 1 bug fix:
|
|
233
|
+
|
|
234
|
+
* Fully qualify the Queue class to avoid conflicts with other libraries. (rafaelfranca)
|
|
235
|
+
|
|
236
|
+
=== 5.23.0 / 2024-05-15
|
|
237
|
+
|
|
238
|
+
* 3 minor enhancements:
|
|
239
|
+
|
|
240
|
+
* Added -Werror to raise on any warning output. (byroot)
|
|
241
|
+
* Added UnexpectedWarning as a failure summary type, added count to output if activated.
|
|
242
|
+
* Added minitest/manual_plugins.rb w/ new Minitest.load method. (tenderlove)
|
|
243
|
+
|
|
244
|
+
* 2 bug fixes:
|
|
245
|
+
|
|
246
|
+
* Allow empty_run! and reporter to display summary for empty runs. (zzak)
|
|
247
|
+
* Make test task verbose using either rake's -v or -t (was just -t).
|
|
248
|
+
|
|
249
|
+
=== 5.22.3 / 2024-03-13
|
|
250
|
+
|
|
251
|
+
* 1 minor enhancement:
|
|
252
|
+
|
|
253
|
+
* MASSIVE improvement of minitest's pride plugin output: Frequencies doubled! Sine waves shifted!! Comments improved!!! Colors rotated!!!! (havenwood)
|
|
254
|
+
|
|
255
|
+
* 3 bug fixes:
|
|
256
|
+
|
|
257
|
+
* Improved wording on Minitest::Test#parallelize_me! to clarify it goes INSIDE your test class/describe.
|
|
258
|
+
* Minor changes to tests to pass when tests ran with extra flags (eg -p).
|
|
259
|
+
* Support Ruby 3.4's new error message format. (mame)
|
|
260
|
+
|
|
261
|
+
=== 5.22.2 / 2024-02-07
|
|
262
|
+
|
|
263
|
+
* 1 bug fix:
|
|
264
|
+
|
|
265
|
+
* Third time's a charm? Remember: 'ensure' is almost always the
|
|
266
|
+
wrong way to go (for results... it's great for cleaning up).
|
|
267
|
+
|
|
268
|
+
=== 5.22.1 / 2024-02-06
|
|
269
|
+
|
|
270
|
+
* 1 bug fix:
|
|
271
|
+
|
|
272
|
+
* Don't exit non-zero if no tests ran and no filter (aka, the test file is empty).
|
|
273
|
+
(I'm starting to think the exit 1 thing for @tenderlove was a mistake...)
|
|
274
|
+
|
|
275
|
+
=== 5.22.0 / 2024-02-05
|
|
276
|
+
|
|
277
|
+
* 1 minor enhancement:
|
|
278
|
+
|
|
279
|
+
* Added "did you mean" output if your --name filter matches nothing. (tenderlove)
|
|
280
|
+
|
|
281
|
+
* 2 bug fixes:
|
|
282
|
+
|
|
283
|
+
* Big cleanup of test filtering. Much prettier / more functional.
|
|
284
|
+
* Fix situation where Assertion#location can't find the location. (pftg)
|
|
285
|
+
|
|
286
|
+
=== 5.21.2 / 2024-01-17
|
|
287
|
+
|
|
288
|
+
* 1 bug fix:
|
|
289
|
+
|
|
290
|
+
* Fixed bug in Minitest::Compress#compress formatting w/ nested patterns. Now recurses properly.
|
|
291
|
+
|
|
292
|
+
=== 5.21.1 / 2024-01-11
|
|
293
|
+
|
|
294
|
+
* 1 bug fix:
|
|
295
|
+
|
|
296
|
+
* Rails' default backtrace filter can't currently work with caller_locations, so reverting back to caller.
|
|
297
|
+
|
|
298
|
+
=== 5.21.0 / 2024-01-11
|
|
299
|
+
|
|
300
|
+
* 10 minor enhancements:
|
|
301
|
+
|
|
302
|
+
* Add include_all kw arg to assert_respond_to and refute_respond_to.
|
|
303
|
+
* Added --quiet flag to skip ProgressReporter (prints the dots). Minor speedup.
|
|
304
|
+
* Added Minitest::Compress#compress and added it to UnexpectedError.
|
|
305
|
+
* Added ability to initialize BacktraceFilter w/ custom regexp.
|
|
306
|
+
* Filter failure backtraces using backtrace_filter before calculating location. (thomasmarshall)
|
|
307
|
+
* Make BacktraceFilter#filter compatible with locations (still compares strings).
|
|
308
|
+
* Optimized Assertion#location ~30%.
|
|
309
|
+
* Output relative paths for all failures/errors/backtraces.
|
|
310
|
+
* Refactored location information in assertions, now using locations.
|
|
311
|
+
* Removed thread and mutex_m dependencies. (hsbt, eregon)
|
|
312
|
+
|
|
313
|
+
* 2 bug fixes:
|
|
314
|
+
|
|
315
|
+
* Drop undocumented bt arg in #skip. Dunno why that ever happened, prolly for testing?
|
|
316
|
+
* Fix mock to work with ruby debugger enabled. (keithlayne)
|
|
317
|
+
|
|
318
|
+
=== 5.20.0 / 2023-09-06
|
|
319
|
+
|
|
320
|
+
* 1 minor enhancement:
|
|
321
|
+
|
|
322
|
+
* Optionally allow autorun exit hook to remain active in forked child. (casperisfine)
|
|
323
|
+
|
|
324
|
+
=== 5.19.0 / 2023-07-26
|
|
325
|
+
|
|
326
|
+
* 2 minor enhancements:
|
|
327
|
+
|
|
328
|
+
* Add metadata lazy accessor to Runnable / Result. (matteeyah)
|
|
329
|
+
* Only load minitest/unit (aka ancient MiniTest compatibility layer) if \ENV[\"MT_COMPAT\"]
|
|
330
|
+
|
|
331
|
+
* 1 bug fix:
|
|
332
|
+
|
|
333
|
+
* Minitest::TestTask enthusiastically added itself to default. (ParadoxV5)
|
|
334
|
+
|
|
335
|
+
=== 5.18.1 / 2023-06-16
|
|
336
|
+
|
|
337
|
+
* 3 bug fixes:
|
|
338
|
+
|
|
339
|
+
* Avoid extra string allocations when filtering tests. (tenderlove)
|
|
340
|
+
* Only mention deprecated \ENV[\'N\'] if it is an integer string.
|
|
341
|
+
* Push up test_order to Minitest::Runnable to fix minitest/hell. (koic)
|
|
342
|
+
|
|
343
|
+
=== 5.18.0 / 2023-03-04
|
|
344
|
+
|
|
345
|
+
* 2 major enhancements:
|
|
346
|
+
|
|
347
|
+
* Added assert_pattern & refute_pattern for pattern matching. (flavorjones)
|
|
348
|
+
* Added matching must_pattern_match & wont_pattern_match to minitest/spec.
|
|
349
|
+
|
|
350
|
+
* 1 bug fix:
|
|
351
|
+
|
|
352
|
+
* Support the new message format of NameError in Ruby 3.3 (mame)
|
|
353
|
+
|
|
354
|
+
=== 5.17.0 / 2022-12-31
|
|
355
|
+
|
|
356
|
+
* 1 minor enhancement:
|
|
357
|
+
|
|
358
|
+
* Refactor setup hooks into a SETUP_METHODS constant. (MSP-Greg)
|
|
359
|
+
|
|
360
|
+
* 3 bug fixes:
|
|
361
|
+
|
|
362
|
+
* Fix kwargs for Mock calls to delegator. (blowmage)
|
|
363
|
+
* Fix kwargs for expectations. (bobmazanec, blowmage)
|
|
364
|
+
* Remove check for .b method. (tenderlove)
|
|
365
|
+
|
|
366
|
+
=== 5.16.3 / 2022-08-17
|
|
367
|
+
|
|
368
|
+
* 2 bug fixes:
|
|
369
|
+
|
|
370
|
+
* Fixed exception sanitization by removing TypeError restriction on rescue.
|
|
371
|
+
* Use A instead of deprecated TESTOPTS in rake test:slow. (davidstosik)
|
|
372
|
+
|
|
1
373
|
=== 5.16.2 / 2022-07-03
|
|
2
374
|
|
|
3
375
|
* 4 bug fixes:
|
|
@@ -159,7 +531,7 @@
|
|
|
159
531
|
|
|
160
532
|
* 3 bug fixes:
|
|
161
533
|
|
|
162
|
-
* Check
|
|
534
|
+
* Check \option[:filter] klass before match. Fixes 2.6 warning. (y-yagi)
|
|
163
535
|
* Fixed Assertions#diff from recalculating if set to nil
|
|
164
536
|
* Fixed spec section of readme to not use deprecated global expectations. (CheezItMan)
|
|
165
537
|
|
data/Manifest.txt
CHANGED
|
@@ -1,29 +1,41 @@
|
|
|
1
|
-
.autotest
|
|
2
1
|
History.rdoc
|
|
3
2
|
Manifest.txt
|
|
4
3
|
README.rdoc
|
|
5
4
|
Rakefile
|
|
5
|
+
bin/minitest
|
|
6
6
|
design_rationale.rb
|
|
7
7
|
lib/hoe/minitest.rb
|
|
8
8
|
lib/minitest.rb
|
|
9
9
|
lib/minitest/assertions.rb
|
|
10
10
|
lib/minitest/autorun.rb
|
|
11
11
|
lib/minitest/benchmark.rb
|
|
12
|
+
lib/minitest/bisect.rb
|
|
13
|
+
lib/minitest/complete.rb
|
|
14
|
+
lib/minitest/compress.rb
|
|
15
|
+
lib/minitest/error_on_warning.rb
|
|
12
16
|
lib/minitest/expectations.rb
|
|
17
|
+
lib/minitest/find_minimal_combination.rb
|
|
13
18
|
lib/minitest/hell.rb
|
|
14
|
-
lib/minitest/
|
|
19
|
+
lib/minitest/manual_plugins.rb
|
|
15
20
|
lib/minitest/parallel.rb
|
|
21
|
+
lib/minitest/path_expander.rb
|
|
16
22
|
lib/minitest/pride.rb
|
|
17
23
|
lib/minitest/pride_plugin.rb
|
|
24
|
+
lib/minitest/server.rb
|
|
25
|
+
lib/minitest/server_plugin.rb
|
|
18
26
|
lib/minitest/spec.rb
|
|
27
|
+
lib/minitest/sprint.rb
|
|
28
|
+
lib/minitest/sprint_plugin.rb
|
|
19
29
|
lib/minitest/test.rb
|
|
20
30
|
lib/minitest/test_task.rb
|
|
21
|
-
lib/minitest/unit.rb
|
|
22
31
|
test/minitest/metametameta.rb
|
|
32
|
+
test/minitest/test_bisect.rb
|
|
33
|
+
test/minitest/test_find_minimal_combination.rb
|
|
23
34
|
test/minitest/test_minitest_assertions.rb
|
|
24
35
|
test/minitest/test_minitest_benchmark.rb
|
|
25
|
-
test/minitest/test_minitest_mock.rb
|
|
26
36
|
test/minitest/test_minitest_reporter.rb
|
|
27
37
|
test/minitest/test_minitest_spec.rb
|
|
28
38
|
test/minitest/test_minitest_test.rb
|
|
29
39
|
test/minitest/test_minitest_test_task.rb
|
|
40
|
+
test/minitest/test_path_expander.rb
|
|
41
|
+
test/minitest/test_server.rb
|