minitest 5.22.0 → 5.22.2
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 +14 -0
- data/lib/minitest.rb +2 -3
- data.tar.gz.sig +2 -4
- metadata +2 -2
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 24c5445e518a9b867eabce480e1d5c176c93fc6806eaed987200961e56443ec0
|
|
4
|
+
data.tar.gz: 2b1c37793c825e1b437d30a899411a2d71e924ab250c23d348f71ca1dbd68df2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bc52b553200c232e0493953439fd935ee6cac3e46c45e121c81c2bc0046a5afd44caf8df980273fd46bf9ac81d38f1349f3a76a9ce9f59afff0e0e2316ea1a45
|
|
7
|
+
data.tar.gz: f98fcfb53d73e1d134d16b376aba3d78ef90d27024c18c48a5e0b153cc55225afc38c2c166e92d9282ffab713654843f82c9fa8a20332a16cc7308c9e1e4a140
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/History.rdoc
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
=== 5.22.2 / 2024-02-07
|
|
2
|
+
|
|
3
|
+
* 1 bug fix:
|
|
4
|
+
|
|
5
|
+
* Third time's a charm? Remember: 'ensure' is almost always the
|
|
6
|
+
wrong way to go (for results... it's great for cleaning up).
|
|
7
|
+
|
|
8
|
+
=== 5.22.1 / 2024-02-06
|
|
9
|
+
|
|
10
|
+
* 1 bug fix:
|
|
11
|
+
|
|
12
|
+
* Don't exit non-zero if no tests ran and no filter (aka, the test file is empty).
|
|
13
|
+
(I'm starting to think the exit 1 thing for @tenderlove was a mistake...)
|
|
14
|
+
|
|
1
15
|
=== 5.22.0 / 2024-02-05
|
|
2
16
|
|
|
3
17
|
* 1 minor enhancement:
|
data/lib/minitest.rb
CHANGED
|
@@ -9,7 +9,7 @@ require_relative "minitest/compress"
|
|
|
9
9
|
# :include: README.rdoc
|
|
10
10
|
|
|
11
11
|
module Minitest
|
|
12
|
-
VERSION = "5.22.
|
|
12
|
+
VERSION = "5.22.2" # :nodoc:
|
|
13
13
|
|
|
14
14
|
@@installed_at_exit ||= false
|
|
15
15
|
@@after_run = []
|
|
@@ -176,6 +176,7 @@ module Minitest
|
|
|
176
176
|
|
|
177
177
|
def self.empty_run! options # :nodoc:
|
|
178
178
|
filter = options[:filter]
|
|
179
|
+
return true unless filter # no filter, but nothing ran == success
|
|
179
180
|
|
|
180
181
|
warn "Nothing ran for filter: %s" % [filter]
|
|
181
182
|
|
|
@@ -187,8 +188,6 @@ module Minitest
|
|
|
187
188
|
warn DidYouMean::Formatter.message_for cs unless cs.empty?
|
|
188
189
|
rescue LoadError
|
|
189
190
|
# do nothing
|
|
190
|
-
ensure
|
|
191
|
-
false
|
|
192
191
|
end
|
|
193
192
|
|
|
194
193
|
##
|
data.tar.gz.sig
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: minitest
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 5.22.
|
|
4
|
+
version: 5.22.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ryan Davis
|
|
@@ -29,7 +29,7 @@ cert_chain:
|
|
|
29
29
|
S7043fq9EbQdBr2AXdj92+CDwuTfHI6/Hj5FVBDULufrJaan4xUgL70Hvc6pTTeW
|
|
30
30
|
deKfBjgVAq7EYHu1AczzlUly
|
|
31
31
|
-----END CERTIFICATE-----
|
|
32
|
-
date: 2024-02-
|
|
32
|
+
date: 2024-02-07 00:00:00.000000000 Z
|
|
33
33
|
dependencies:
|
|
34
34
|
- !ruby/object:Gem::Dependency
|
|
35
35
|
name: rdoc
|
metadata.gz.sig
CHANGED
|
Binary file
|