minitest 5.18.0 → 5.25.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 +187 -1
- data/Manifest.txt +3 -0
- data/README.rdoc +28 -17
- data/Rakefile +7 -1
- data/lib/hoe/minitest.rb +2 -1
- data/lib/minitest/assertions.rb +77 -80
- data/lib/minitest/autorun.rb +0 -7
- data/lib/minitest/benchmark.rb +6 -9
- data/lib/minitest/compress.rb +94 -0
- data/lib/minitest/error_on_warning.rb +11 -0
- data/lib/minitest/expectations.rb +2 -2
- data/lib/minitest/manual_plugins.rb +16 -0
- data/lib/minitest/mock.rb +39 -19
- data/lib/minitest/parallel.rb +5 -5
- data/lib/minitest/pride_plugin.rb +16 -23
- data/lib/minitest/spec.rb +13 -12
- data/lib/minitest/test.rb +17 -36
- data/lib/minitest/test_task.rb +21 -19
- data/lib/minitest.rb +298 -141
- data/test/minitest/metametameta.rb +32 -18
- data/test/minitest/test_minitest_assertions.rb +159 -140
- data/test/minitest/test_minitest_benchmark.rb +1 -1
- data/test/minitest/test_minitest_mock.rb +151 -79
- data/test/minitest/test_minitest_reporter.rb +143 -19
- data/test/minitest/test_minitest_spec.rb +73 -56
- data/test/minitest/test_minitest_test.rb +218 -116
- data/test/minitest/test_minitest_test_task.rb +18 -7
- data.tar.gz.sig +0 -0
- metadata +21 -20
- metadata.gz.sig +0 -0
@@ -1,5 +1,11 @@
|
|
1
1
|
require "minitest/autorun"
|
2
|
-
|
2
|
+
|
3
|
+
begin
|
4
|
+
require "hoe"
|
5
|
+
rescue LoadError => e
|
6
|
+
warn e.message
|
7
|
+
return
|
8
|
+
end
|
3
9
|
|
4
10
|
require "minitest/test_task"
|
5
11
|
|
@@ -8,11 +14,16 @@ Hoe.load_plugins # make sure Hoe::Test is loaded
|
|
8
14
|
class TestHoeTest < Minitest::Test
|
9
15
|
PATH = "test/minitest/test_minitest_test_task.rb"
|
10
16
|
|
11
|
-
|
17
|
+
def util_cmd_string *prelude_framework
|
18
|
+
mt_path = %w[lib test .].join File::PATH_SEPARATOR
|
19
|
+
mt_expected = "-I%s -w -e '%srequire %p' -- "
|
12
20
|
|
13
|
-
|
14
|
-
|
15
|
-
|
21
|
+
mt_expected % [mt_path, prelude_framework.join("; "), PATH]
|
22
|
+
end
|
23
|
+
|
24
|
+
def util_exp_cmd
|
25
|
+
@tester.make_test_cmd.sub(/ -- .+/, " -- ")
|
26
|
+
end
|
16
27
|
|
17
28
|
def test_make_test_cmd_for_minitest
|
18
29
|
skip "Using TESTOPTS... skipping" if ENV["TESTOPTS"]
|
@@ -25,7 +36,7 @@ class TestHoeTest < Minitest::Test
|
|
25
36
|
t.test_globs = [PATH]
|
26
37
|
end
|
27
38
|
|
28
|
-
assert_equal
|
39
|
+
assert_equal util_cmd_string(framework), util_exp_cmd
|
29
40
|
end
|
30
41
|
|
31
42
|
def test_make_test_cmd_for_minitest_prelude
|
@@ -41,6 +52,6 @@ class TestHoeTest < Minitest::Test
|
|
41
52
|
t.test_globs = [PATH]
|
42
53
|
end
|
43
54
|
|
44
|
-
assert_equal
|
55
|
+
assert_equal util_cmd_string(prelude, framework), util_exp_cmd
|
45
56
|
end
|
46
57
|
end
|
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.25.5
|
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: 2025-03-12 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.2'
|
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.2'
|
68
67
|
description: |-
|
69
68
|
minitest provides a complete suite of testing facilities supporting
|
70
69
|
TDD, BDD, mocking, and benchmarking.
|
@@ -139,8 +138,11 @@ files:
|
|
139
138
|
- lib/minitest/assertions.rb
|
140
139
|
- lib/minitest/autorun.rb
|
141
140
|
- lib/minitest/benchmark.rb
|
141
|
+
- lib/minitest/compress.rb
|
142
|
+
- lib/minitest/error_on_warning.rb
|
142
143
|
- lib/minitest/expectations.rb
|
143
144
|
- lib/minitest/hell.rb
|
145
|
+
- lib/minitest/manual_plugins.rb
|
144
146
|
- lib/minitest/mock.rb
|
145
147
|
- lib/minitest/parallel.rb
|
146
148
|
- lib/minitest/pride.rb
|
@@ -157,13 +159,13 @@ files:
|
|
157
159
|
- test/minitest/test_minitest_spec.rb
|
158
160
|
- test/minitest/test_minitest_test.rb
|
159
161
|
- test/minitest/test_minitest_test_task.rb
|
160
|
-
homepage: https://github.com/
|
162
|
+
homepage: https://github.com/minitest/minitest
|
161
163
|
licenses:
|
162
164
|
- MIT
|
163
165
|
metadata:
|
164
|
-
homepage_uri: https://github.com/
|
165
|
-
bug_tracker_uri: https://github.com/
|
166
|
-
|
166
|
+
homepage_uri: https://github.com/minitest/minitest
|
167
|
+
bug_tracker_uri: https://github.com/minitest/minitest/issues
|
168
|
+
changelog_uri: https://github.com/minitest/minitest/blob/master/History.rdoc
|
167
169
|
rdoc_options:
|
168
170
|
- "--main"
|
169
171
|
- README.rdoc
|
@@ -173,7 +175,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
173
175
|
requirements:
|
174
176
|
- - ">="
|
175
177
|
- !ruby/object:Gem::Version
|
176
|
-
version: '2.
|
178
|
+
version: '2.7'
|
177
179
|
- - "<"
|
178
180
|
- !ruby/object:Gem::Version
|
179
181
|
version: '4.0'
|
@@ -183,8 +185,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
183
185
|
- !ruby/object:Gem::Version
|
184
186
|
version: '0'
|
185
187
|
requirements: []
|
186
|
-
rubygems_version: 3.
|
187
|
-
signing_key:
|
188
|
+
rubygems_version: 3.6.3
|
188
189
|
specification_version: 4
|
189
190
|
summary: minitest provides a complete suite of testing facilities supporting TDD,
|
190
191
|
BDD, mocking, and benchmarking
|
metadata.gz.sig
CHANGED
Binary file
|