minitest 5.25.4 → 5.26.0
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 +30 -0
- data/README.rdoc +16 -9
- data/Rakefile +1 -2
- data/lib/minitest/assertions.rb +3 -8
- data/lib/minitest/expectations.rb +2 -2
- data/lib/minitest/spec.rb +6 -4
- data/lib/minitest/test.rb +2 -1
- data/lib/minitest/test_task.rb +26 -4
- data/lib/minitest.rb +13 -11
- data/test/minitest/test_minitest_assertions.rb +3 -3
- data/test/minitest/test_minitest_spec.rb +8 -10
- data/test/minitest/test_minitest_test.rb +19 -1
- data.tar.gz.sig +0 -0
- metadata +14 -17
- 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: ecf3d390663e8f655908e6feef0796c5666930f979a0010e27d5adf4956b0bfc
|
4
|
+
data.tar.gz: be16818cbc164296bdacde79856532e5695bd6e45dec7d28e624e75bbccbf465
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4690ff166d9757befd4365ca3ca77443e4252c32132e91933093548b179ae051cade595e1a085e373e9f6a32b4677d38073cfc1b6e386a00bf77edc8cffad487
|
7
|
+
data.tar.gz: 923c90aaff33957818b8fcb053bf9fb28c01953ec910d42114cd3ba09204a0166e85824fb7188bc944f12a7855c47c0e6f63a39d2f45fcb37f25b8176416cd18
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data/History.rdoc
CHANGED
@@ -1,3 +1,33 @@
|
|
1
|
+
=== 5.26.0 / 2025-10-07
|
2
|
+
|
3
|
+
The Seattle.rb Nerd Party, Slightly Tipsy Edition!
|
4
|
+
|
5
|
+
* 2 minor enhancements:
|
6
|
+
|
7
|
+
* Added extra documentation to Minitest::TestTask options.
|
8
|
+
* Make parallelize_me! a no-op when n_threads=1.
|
9
|
+
|
10
|
+
* 9 bug fixes:
|
11
|
+
|
12
|
+
* Bypass parallel_executor entirely when n_threads=1.
|
13
|
+
* Don't require rubygems in Rakefile... it is 2025.
|
14
|
+
* Ensure that minitest exits non-zero on Interrupt. (tavianator)
|
15
|
+
* Fix Minitest.run sequence rdoc to include loop vars and read consistently.
|
16
|
+
* Fix call to parallel_executor.shutdown when it isn't defined.
|
17
|
+
* Removed some 1.8/1.9-based code from the assertions and expectations.
|
18
|
+
* Still fighting with rdoc? Yup. Still fighting with rdoc...
|
19
|
+
* Switched assert_equal's diff from Tempfile.open to Tempfile.create.
|
20
|
+
* Use Regexp.escape for BASE_RE in case pwd has special chars. (astra_1993)
|
21
|
+
|
22
|
+
=== 5.25.5 / 2025-03-12
|
23
|
+
|
24
|
+
* 4 bug fixes:
|
25
|
+
|
26
|
+
* Bumped minimum ruby to 2.7.
|
27
|
+
* Fixed expectation docs for must/wont_pattern_match. (jaredcwhite)
|
28
|
+
* Reorder Minitest::Test.ancestors to allow reaching Minitest::Assertions#skipped? (Edouard-chin)
|
29
|
+
* Update the ruby and rails compatibility tables. (bquorning)
|
30
|
+
|
1
31
|
=== 5.25.4 / 2024-12-03
|
2
32
|
|
3
33
|
* 1 bug fix:
|
data/README.rdoc
CHANGED
@@ -412,33 +412,40 @@ supporting versions of ruby that are long past EOL. Hopefully I'll be
|
|
412
412
|
able to support only current versions of ruby sometime in the near
|
413
413
|
future.
|
414
414
|
|
415
|
-
|
415
|
+
NOTICE: At this point, I will only locally test/dev against the
|
416
|
+
currently 3 supported (non-EOL) versions of ruby. I cannot and will
|
417
|
+
not maintain that many builds.
|
418
|
+
|
419
|
+
(As of 2025-02-03)
|
416
420
|
|
417
421
|
Current versions of rails: (https://endoflife.date/rails)
|
418
422
|
|
419
423
|
| rails | min ruby | minitest | status | EOL Date |
|
420
424
|
|-------+----------+----------+----------+------------|
|
421
|
-
|
|
422
|
-
| 7.
|
423
|
-
|
|
425
|
+
| 8.0 | >= 3.2 | >= 5.1 | Current | 2026-11-07 |
|
426
|
+
| 7.2 | >= 3.1 | >= 5.1 | Current | 2026-08-09 |
|
427
|
+
| 7.1 | >= 2.7 | >= 5.1 | Security | 2025-10-01 |
|
428
|
+
| 7.0 | >= 2.7 | >= 5.1 | Security | 2025-04-01 |
|
429
|
+
| 6.1 | >= 2.5 | >= 5.1 | EOL | 2024-10-01 |
|
424
430
|
| 6.0 | >= 2.5 | >= 5.1 | EOL | 2023-06-01 |
|
425
431
|
| 5.2 | >= 2.2.2 | ~> 5.1 | EOL | 2022-06-01 |
|
426
432
|
|
427
433
|
If you want to look at the requirements for a specific version, run:
|
428
434
|
|
429
|
-
gem spec -r --ruby rails -v
|
435
|
+
gem spec -r --ruby rails -v 8.0.0
|
430
436
|
|
431
437
|
Current versions of ruby: (https://endoflife.date/ruby)
|
432
438
|
|
433
439
|
| ruby | Status | EOL Date |
|
434
440
|
|------+---------+------------|
|
435
|
-
| 3.
|
436
|
-
| 3.
|
437
|
-
| 3.
|
441
|
+
| 3.4 | Current | 2028-03-31 |
|
442
|
+
| 3.3 | Maint | 2027-03-31 |
|
443
|
+
| 3.2 | Security| 2026-03-31 |
|
444
|
+
| 3.1 | EOL | 2025-03-31 |
|
438
445
|
| 3.0 | EOL | 2024-03-31 |
|
439
446
|
| 2.7 | EOL | 2023-03-31 |
|
440
447
|
| 2.6 | EOL | 2022-03-31 |
|
441
|
-
| 2.5 | EOL | 2021-03-31 |
|
448
|
+
| 2.5 | EOL | 2021-03-31 |
|
442
449
|
|
443
450
|
=== How to test SimpleDelegates?
|
444
451
|
|
data/Rakefile
CHANGED
@@ -1,6 +1,5 @@
|
|
1
1
|
# -*- ruby -*-
|
2
2
|
|
3
|
-
require "rubygems"
|
4
3
|
require "hoe"
|
5
4
|
$:.unshift "lib" # to pick up lib/minitest/test_task.rb when minitest not installed
|
6
5
|
|
@@ -12,7 +11,7 @@ Hoe.spec "minitest" do
|
|
12
11
|
|
13
12
|
license "MIT"
|
14
13
|
|
15
|
-
require_ruby_version [">= 2.
|
14
|
+
require_ruby_version [">= 2.7", "< 4.0"]
|
16
15
|
end
|
17
16
|
|
18
17
|
desc "Find missing expectations"
|
data/lib/minitest/assertions.rb
CHANGED
@@ -62,11 +62,11 @@ module Minitest
|
|
62
62
|
return "Expected: #{mu_pp exp}\n Actual: #{mu_pp act}" unless
|
63
63
|
expect
|
64
64
|
|
65
|
-
Tempfile.
|
65
|
+
Tempfile.create "expect" do |a|
|
66
66
|
a.puts expect
|
67
67
|
a.flush
|
68
68
|
|
69
|
-
Tempfile.
|
69
|
+
Tempfile.create "butwas" do |b|
|
70
70
|
b.puts butwas
|
71
71
|
b.flush
|
72
72
|
|
@@ -500,14 +500,9 @@ module Minitest
|
|
500
500
|
value = catch sym do
|
501
501
|
begin
|
502
502
|
yield
|
503
|
-
rescue
|
504
|
-
default += ", not :#{e.message[/uncaught throw \`(\w+?)\'/, 1]}"
|
505
|
-
rescue ArgumentError => e # 1.9 exception
|
503
|
+
rescue ArgumentError => e # 1.9+ exception
|
506
504
|
raise e unless e.message.include? "uncaught throw"
|
507
505
|
default += ", not #{e.message.split(/ /).last}"
|
508
|
-
rescue NameError => e # 1.8 exception
|
509
|
-
raise e unless e.name == sym
|
510
|
-
default += ", not #{e.name.inspect}"
|
511
506
|
end
|
512
507
|
caught = false
|
513
508
|
end
|
@@ -125,7 +125,7 @@ module Minitest::Expectations
|
|
125
125
|
infect_an_assertion :assert_output, :must_output, :block
|
126
126
|
|
127
127
|
##
|
128
|
-
# See Minitest::Assertions#
|
128
|
+
# See Minitest::Assertions#assert_pattern
|
129
129
|
#
|
130
130
|
# _ { ... }.must_pattern_match [...]
|
131
131
|
#
|
@@ -293,7 +293,7 @@ module Minitest::Expectations
|
|
293
293
|
infect_an_assertion :refute_operator, :wont_be, :reverse
|
294
294
|
|
295
295
|
##
|
296
|
-
# See Minitest::Assertions#
|
296
|
+
# See Minitest::Assertions#refute_pattern
|
297
297
|
#
|
298
298
|
# _ { ... }.wont_pattern_match [...]
|
299
299
|
#
|
data/lib/minitest/spec.rb
CHANGED
@@ -38,7 +38,11 @@ class Module # :nodoc:
|
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
|
-
|
41
|
+
# :stopdoc:
|
42
|
+
module Minitest # fucking hell rdoc...
|
43
|
+
Expectation = Struct.new :target, :ctx
|
44
|
+
end
|
45
|
+
# :startdoc:
|
42
46
|
|
43
47
|
##
|
44
48
|
# Kernel extensions for minitest
|
@@ -285,9 +289,7 @@ class Minitest::Spec < Minitest::Test
|
|
285
289
|
defined?(@name) ? @name : super
|
286
290
|
end
|
287
291
|
|
288
|
-
|
289
|
-
name # Can't alias due to 1.8.7, not sure why
|
290
|
-
end
|
292
|
+
alias to_s name
|
291
293
|
|
292
294
|
attr_reader :desc # :nodoc:
|
293
295
|
alias specify it
|
data/lib/minitest/test.rb
CHANGED
@@ -9,8 +9,8 @@ module Minitest
|
|
9
9
|
|
10
10
|
class Test < Runnable
|
11
11
|
require "minitest/assertions"
|
12
|
-
include Minitest::Assertions
|
13
12
|
include Minitest::Reportable
|
13
|
+
include Minitest::Assertions
|
14
14
|
|
15
15
|
def class_name # :nodoc:
|
16
16
|
self.class.name # for Minitest::Reportable
|
@@ -58,6 +58,7 @@ module Minitest
|
|
58
58
|
# tests are awesome.
|
59
59
|
|
60
60
|
def self.parallelize_me!
|
61
|
+
return unless Minitest.parallel_executor
|
61
62
|
include Minitest::Parallel::Test
|
62
63
|
extend Minitest::Parallel::Test::ClassMethods
|
63
64
|
end
|
data/lib/minitest/test_task.rb
CHANGED
@@ -44,8 +44,16 @@ module Minitest # :nodoc:
|
|
44
44
|
WINDOWS = RbConfig::CONFIG["host_os"] =~ /mswin|mingw/ # :nodoc:
|
45
45
|
|
46
46
|
##
|
47
|
-
# Create several test-oriented tasks under +name
|
48
|
-
# optional block to customize variables.
|
47
|
+
# Create several test-oriented tasks under +name+ (default:
|
48
|
+
# "test"). Takes an optional block to customize variables.
|
49
|
+
# Examples:
|
50
|
+
#
|
51
|
+
# Minitest::TestTask.create # named "test", all defaults
|
52
|
+
#
|
53
|
+
# Minitest::TestTask.create do |t|
|
54
|
+
# t.warning = false # my tests are noisy
|
55
|
+
# t.framework = %(require_relative "./test/helper.rb")
|
56
|
+
# end
|
49
57
|
|
50
58
|
def self.create name = :test, &block
|
51
59
|
task = new name
|
@@ -69,9 +77,18 @@ module Minitest # :nodoc:
|
|
69
77
|
|
70
78
|
##
|
71
79
|
# The code to load the framework. Defaults to requiring
|
72
|
-
# minitest/autorun
|
80
|
+
# minitest/autorun.
|
81
|
+
#
|
82
|
+
# If you have a test helper file that requires minitest/autorun
|
83
|
+
# and anything else your project standardizes on, then you'll
|
84
|
+
# probably want to change this to:
|
73
85
|
#
|
74
|
-
#
|
86
|
+
# Minitest::TestTask.create do |t|
|
87
|
+
# t.framework = %(require_relative "./test/helper.rb")
|
88
|
+
# end
|
89
|
+
#
|
90
|
+
# or something similar. NOTE: if you do this, then helper must
|
91
|
+
# require "minitest/autorun" at the top to start the tests.
|
75
92
|
|
76
93
|
attr_accessor :framework
|
77
94
|
|
@@ -100,6 +117,11 @@ module Minitest # :nodoc:
|
|
100
117
|
|
101
118
|
##
|
102
119
|
# Optional: Additional ruby to run before the test framework is loaded.
|
120
|
+
# Example:
|
121
|
+
#
|
122
|
+
# Minitest::TestTask.create "test:cov" do |t|
|
123
|
+
# t.test_prelude = %(require "simplecov")
|
124
|
+
# end
|
103
125
|
|
104
126
|
attr_accessor :test_prelude
|
105
127
|
|
data/lib/minitest.rb
CHANGED
@@ -10,7 +10,7 @@ require_relative "minitest/compress"
|
|
10
10
|
# runtime. See +Minitest.run+ for more information.
|
11
11
|
|
12
12
|
module Minitest
|
13
|
-
VERSION = "5.
|
13
|
+
VERSION = "5.26.0" # :nodoc:
|
14
14
|
|
15
15
|
@@installed_at_exit ||= false
|
16
16
|
@@after_run = []
|
@@ -36,7 +36,7 @@ module Minitest
|
|
36
36
|
warn "DEPRECATED: use MT_CPU instead of N for parallel test runs" if ENV["N"] && ENV["N"].to_i > 0
|
37
37
|
n_threads = (ENV["MT_CPU"] || ENV["N"] || Etc.nprocessors).to_i
|
38
38
|
|
39
|
-
self.parallel_executor = Parallel::Executor.new n_threads
|
39
|
+
self.parallel_executor = Parallel::Executor.new n_threads if n_threads > 1
|
40
40
|
|
41
41
|
##
|
42
42
|
# Filter object for backtraces.
|
@@ -259,12 +259,13 @@ module Minitest
|
|
259
259
|
# Minitest.process_args
|
260
260
|
# Minitest.init_plugins
|
261
261
|
# Minitest.__run(reporter, options)
|
262
|
-
# Runnable.runnables.each
|
262
|
+
# Runnable.runnables.each |runnable_klass|
|
263
263
|
# runnable_klass.run(reporter, options)
|
264
|
-
#
|
265
|
-
#
|
266
|
-
#
|
267
|
-
#
|
264
|
+
# filtered_methods = runnable_methods.select {...}.reject {...}
|
265
|
+
# filtered_methods.each |runnable_method|
|
266
|
+
# runnable_klass.run_one_method(self, runnable_method, reporter)
|
267
|
+
# Minitest.run_one_method(runnable_klass, runnable_method)
|
268
|
+
# runnable_klass.new(runnable_method).run
|
268
269
|
|
269
270
|
def self.run args = []
|
270
271
|
self.load_plugins unless args.delete("--no-plugins") || ENV["MT_NO_PLUGINS"]
|
@@ -286,18 +287,19 @@ module Minitest
|
|
286
287
|
reporter.start
|
287
288
|
begin
|
288
289
|
__run reporter, options
|
290
|
+
finished = true
|
289
291
|
rescue Interrupt
|
290
292
|
warn "Interrupted. Exiting..."
|
291
293
|
end
|
292
|
-
self.parallel_executor.shutdown
|
294
|
+
self.parallel_executor.shutdown if parallel_executor.respond_to? :shutdown
|
293
295
|
|
294
296
|
# might have been removed/replaced during init_plugins:
|
295
297
|
summary = reporter.reporters.grep(SummaryReporter).first
|
296
298
|
|
297
299
|
reporter.report
|
298
300
|
|
299
|
-
return empty_run! options if summary && summary.count == 0
|
300
|
-
reporter.passed?
|
301
|
+
return empty_run! options if finished && summary && summary.count == 0
|
302
|
+
finished and reporter.passed?
|
301
303
|
end
|
302
304
|
|
303
305
|
def self.empty_run! options # :nodoc:
|
@@ -1079,7 +1081,7 @@ module Minitest
|
|
1079
1081
|
self.error.backtrace
|
1080
1082
|
end
|
1081
1083
|
|
1082
|
-
BASE_RE = %r%#{Dir.pwd}/% # :nodoc:
|
1084
|
+
BASE_RE = %r%#{Regexp.escape Dir.pwd}/% # :nodoc:
|
1083
1085
|
|
1084
1086
|
def message # :nodoc:
|
1085
1087
|
bt = Minitest.filter_backtrace(self.backtrace).join("\n ")
|
@@ -318,13 +318,13 @@ class TestMinitestAssertions < Minitest::Test
|
|
318
318
|
end
|
319
319
|
|
320
320
|
def test_assert_equal_string_both_escaped_unescaped_newlines
|
321
|
-
msg = <<~EOM
|
321
|
+
msg = <<~'EOM' # NOTE: single quotes on heredoc
|
322
322
|
--- expected
|
323
323
|
+++ actual
|
324
324
|
@@ -1,2 +1 @@
|
325
|
-
-"A
|
325
|
+
-"A\n
|
326
326
|
-B"
|
327
|
-
+"A\\
|
327
|
+
+"A\n\\nB"
|
328
328
|
EOM
|
329
329
|
|
330
330
|
assert_triggered msg do
|
@@ -710,8 +710,6 @@ describe Minitest::Spec do
|
|
710
710
|
end
|
711
711
|
|
712
712
|
describe Minitest::Spec, :let do
|
713
|
-
i_suck_and_my_tests_are_order_dependent!
|
714
|
-
|
715
713
|
def _count
|
716
714
|
$let_count ||= 0
|
717
715
|
end
|
@@ -722,21 +720,21 @@ describe Minitest::Spec, :let do
|
|
722
720
|
end
|
723
721
|
|
724
722
|
it "is evaluated once per example" do
|
725
|
-
|
723
|
+
exp = _count + 1
|
726
724
|
|
727
|
-
_(count).must_equal
|
728
|
-
_(count).must_equal
|
725
|
+
_(count).must_equal exp
|
726
|
+
_(count).must_equal exp
|
729
727
|
|
730
|
-
_(_count).must_equal
|
728
|
+
_(_count).must_equal exp
|
731
729
|
end
|
732
730
|
|
733
731
|
it "is REALLY evaluated once per example" do
|
734
|
-
|
732
|
+
exp = _count + 1
|
735
733
|
|
736
|
-
_(count).must_equal
|
737
|
-
_(count).must_equal
|
734
|
+
_(count).must_equal exp
|
735
|
+
_(count).must_equal exp
|
738
736
|
|
739
|
-
_(_count).must_equal
|
737
|
+
_(_count).must_equal exp
|
740
738
|
end
|
741
739
|
|
742
740
|
it 'raises an error if the name begins with "test"' do
|
@@ -157,6 +157,24 @@ class TestMinitestUnit < MetaMetaMetaTestCase
|
|
157
157
|
refute_predicate test, :skipped?
|
158
158
|
end
|
159
159
|
|
160
|
+
def test_skipped_is_reachable
|
161
|
+
test_class = Class.new FakeNamedTest do
|
162
|
+
def test_omg
|
163
|
+
skip
|
164
|
+
ensure
|
165
|
+
flunk unless skipped?
|
166
|
+
end
|
167
|
+
end
|
168
|
+
|
169
|
+
test = test_class.new :test_omg
|
170
|
+
test.run
|
171
|
+
|
172
|
+
refute_predicate test, :error?
|
173
|
+
refute_predicate test, :passed?
|
174
|
+
|
175
|
+
assert_predicate test, :skipped?
|
176
|
+
end
|
177
|
+
|
160
178
|
def util_expand_bt bt
|
161
179
|
bt.map { |f| f.start_with?(".") ? File.expand_path(f) : f }
|
162
180
|
end
|
@@ -644,7 +662,7 @@ class TestMinitestRunner < MetaMetaMetaTestCase
|
|
644
662
|
2 runs, 2 assertions, 0 failures, 0 errors, 0 skips
|
645
663
|
EOM
|
646
664
|
|
647
|
-
skip
|
665
|
+
skip unless Minitest.parallel_executor # locks up test runner if 1 CPU
|
648
666
|
|
649
667
|
assert_report expected do |reporter|
|
650
668
|
reporter.extend Module.new {
|
data.tar.gz.sig
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,18 +1,17 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: minitest
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.
|
4
|
+
version: 5.26.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ryan Davis
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain:
|
11
10
|
- |
|
12
11
|
-----BEGIN CERTIFICATE-----
|
13
|
-
|
12
|
+
MIIDPjCCAiagAwIBAgIBCTANBgkqhkiG9w0BAQsFADBFMRMwEQYDVQQDDApyeWFu
|
14
13
|
ZC1ydWJ5MRkwFwYKCZImiZPyLGQBGRYJemVuc3BpZGVyMRMwEQYKCZImiZPyLGQB
|
15
|
-
|
14
|
+
GRYDY29tMB4XDTI1MDEwNjIzMjcwMVoXDTI2MDEwNjIzMjcwMVowRTETMBEGA1UE
|
16
15
|
AwwKcnlhbmQtcnVieTEZMBcGCgmSJomT8ixkARkWCXplbnNwaWRlcjETMBEGCgmS
|
17
16
|
JomT8ixkARkWA2NvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALda
|
18
17
|
b9DCgK+627gPJkB6XfjZ1itoOQvpqH1EXScSaba9/S2VF22VYQbXU1xQXL/WzCkx
|
@@ -22,14 +21,14 @@ cert_chain:
|
|
22
21
|
qhtV7HJxNKuPj/JFH0D2cswvzznE/a5FOYO68g+YCuFi5L8wZuuM8zzdwjrWHqSV
|
23
22
|
gBEfoTEGr7Zii72cx+sCAwEAAaM5MDcwCQYDVR0TBAIwADALBgNVHQ8EBAMCBLAw
|
24
23
|
HQYDVR0OBBYEFEfFe9md/r/tj/Wmwpy+MI8d9k/hMA0GCSqGSIb3DQEBCwUAA4IB
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
24
|
+
AQAC0WQJcPOWPFwkojhzweilRVjTJ19UiLhiBTw3C1wJO3LVdBkWDmnnhAmKuX4D
|
25
|
+
r7vjQvESlABGIPdutI1Yl7mrHQzTkfLfXvNN6MT0nLChPyIYauT6SZZxubwJrUfA
|
26
|
+
7R0c2CJTIboZ0XaGpLsXqHEF1c29H7TV1QvVuqKAN2mCjh4N82QVn+ZKtys28AwT
|
27
|
+
6GfQX2fqLoi4KSc7xIzHKaNzqxeOICmJofk9w5VZ2rRN6yes8jvFYwz9HR41wdj8
|
28
|
+
bwfinv7Yp5fA6AysuZLhCykyfDuZVRrUp0Vb68YCKsLjJly/Theak+euNTxvHsB+
|
29
|
+
al9oSgPPHICMEX65qvLywitx
|
31
30
|
-----END CERTIFICATE-----
|
32
|
-
date:
|
31
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
33
32
|
dependencies:
|
34
33
|
- !ruby/object:Gem::Dependency
|
35
34
|
name: rdoc
|
@@ -57,14 +56,14 @@ dependencies:
|
|
57
56
|
requirements:
|
58
57
|
- - "~>"
|
59
58
|
- !ruby/object:Gem::Version
|
60
|
-
version: '4.
|
59
|
+
version: '4.3'
|
61
60
|
type: :development
|
62
61
|
prerelease: false
|
63
62
|
version_requirements: !ruby/object:Gem::Requirement
|
64
63
|
requirements:
|
65
64
|
- - "~>"
|
66
65
|
- !ruby/object:Gem::Version
|
67
|
-
version: '4.
|
66
|
+
version: '4.3'
|
68
67
|
description: |-
|
69
68
|
minitest provides a complete suite of testing facilities supporting
|
70
69
|
TDD, BDD, mocking, and benchmarking.
|
@@ -167,7 +166,6 @@ metadata:
|
|
167
166
|
homepage_uri: https://github.com/minitest/minitest
|
168
167
|
bug_tracker_uri: https://github.com/minitest/minitest/issues
|
169
168
|
changelog_uri: https://github.com/minitest/minitest/blob/master/History.rdoc
|
170
|
-
post_install_message:
|
171
169
|
rdoc_options:
|
172
170
|
- "--main"
|
173
171
|
- README.rdoc
|
@@ -177,7 +175,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
177
175
|
requirements:
|
178
176
|
- - ">="
|
179
177
|
- !ruby/object:Gem::Version
|
180
|
-
version: '2.
|
178
|
+
version: '2.7'
|
181
179
|
- - "<"
|
182
180
|
- !ruby/object:Gem::Version
|
183
181
|
version: '4.0'
|
@@ -187,8 +185,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
187
185
|
- !ruby/object:Gem::Version
|
188
186
|
version: '0'
|
189
187
|
requirements: []
|
190
|
-
rubygems_version: 3.
|
191
|
-
signing_key:
|
188
|
+
rubygems_version: 3.7.2
|
192
189
|
specification_version: 4
|
193
190
|
summary: minitest provides a complete suite of testing facilities supporting TDD,
|
194
191
|
BDD, mocking, and benchmarking
|
metadata.gz.sig
CHANGED
Binary file
|