minitest 5.12.2

Sign up to get free protection for your applications and to get access to all the features.
metadata ADDED
@@ -0,0 +1,184 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: minitest
3
+ version: !ruby/object:Gem::Version
4
+ version: 5.12.2
5
+ platform: ruby
6
+ authors:
7
+ - Ryan Davis
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain:
11
+ - |
12
+ -----BEGIN CERTIFICATE-----
13
+ MIIDPjCCAiagAwIBAgIBAzANBgkqhkiG9w0BAQsFADBFMRMwEQYDVQQDDApyeWFu
14
+ ZC1ydWJ5MRkwFwYKCZImiZPyLGQBGRYJemVuc3BpZGVyMRMwEQYKCZImiZPyLGQB
15
+ GRYDY29tMB4XDTE4MTIwNDIxMzAxNFoXDTE5MTIwNDIxMzAxNFowRTETMBEGA1UE
16
+ AwwKcnlhbmQtcnVieTEZMBcGCgmSJomT8ixkARkWCXplbnNwaWRlcjETMBEGCgmS
17
+ JomT8ixkARkWA2NvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALda
18
+ b9DCgK+627gPJkB6XfjZ1itoOQvpqH1EXScSaba9/S2VF22VYQbXU1xQXL/WzCkx
19
+ taCPaLmfYIaFcHHCSY4hYDJijRQkLxPeB3xbOfzfLoBDbjvx5JxgJxUjmGa7xhcT
20
+ oOvjtt5P8+GSK9zLzxQP0gVLS/D0FmoE44XuDr3iQkVS2ujU5zZL84mMNqNB1znh
21
+ GiadM9GHRaDiaxuX0cIUBj19T01mVE2iymf9I6bEsiayK/n6QujtyCbTWsAS9Rqt
22
+ qhtV7HJxNKuPj/JFH0D2cswvzznE/a5FOYO68g+YCuFi5L8wZuuM8zzdwjrWHqSV
23
+ gBEfoTEGr7Zii72cx+sCAwEAAaM5MDcwCQYDVR0TBAIwADALBgNVHQ8EBAMCBLAw
24
+ HQYDVR0OBBYEFEfFe9md/r/tj/Wmwpy+MI8d9k/hMA0GCSqGSIb3DQEBCwUAA4IB
25
+ AQCbJwLmpJR2PomLU+Zzw3KRzH/hbyUWc/ftru71AopZ1fy4iY9J/BW5QYKVYwbP
26
+ V0FSBWtvfI/RdwfKGtuGhPKECZgmLieGuZ3XCc09qPu1bdg7i/tu1p0t0c6163ku
27
+ nDMDIC/t/DAFK0TY9I3HswuyZGbLW7rgF0DmiuZdN/RPhHq2pOLMLXJmFclCb/im
28
+ 9yToml/06TJdUJ5p64mkBs0TzaK66DIB1Smd3PdtfZqoRV+EwaXMdx0Hb3zdR1JR
29
+ Em82dBUFsipwMLCYj39kcyHWAxyl6Ae1Cn9r/ItVBCxoeFdrHjfavnrIEoXUt4bU
30
+ UfBugfLD19bu3nvL+zTAGx/U
31
+ -----END CERTIFICATE-----
32
+ date: 2019-09-29 00:00:00.000000000 Z
33
+ dependencies:
34
+ - !ruby/object:Gem::Dependency
35
+ name: rdoc
36
+ requirement: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '4.0'
41
+ - - "<"
42
+ - !ruby/object:Gem::Version
43
+ version: '7'
44
+ type: :development
45
+ prerelease: false
46
+ version_requirements: !ruby/object:Gem::Requirement
47
+ requirements:
48
+ - - ">="
49
+ - !ruby/object:Gem::Version
50
+ version: '4.0'
51
+ - - "<"
52
+ - !ruby/object:Gem::Version
53
+ version: '7'
54
+ - !ruby/object:Gem::Dependency
55
+ name: hoe
56
+ requirement: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - "~>"
59
+ - !ruby/object:Gem::Version
60
+ version: '3.18'
61
+ type: :development
62
+ prerelease: false
63
+ version_requirements: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - "~>"
66
+ - !ruby/object:Gem::Version
67
+ version: '3.18'
68
+ description: |-
69
+ minitest provides a complete suite of testing facilities supporting
70
+ TDD, BDD, mocking, and benchmarking.
71
+
72
+ "I had a class with Jim Weirich on testing last week and we were
73
+ allowed to choose our testing frameworks. Kirk Haines and I were
74
+ paired up and we cracked open the code for a few test
75
+ frameworks...
76
+
77
+ I MUST say that minitest is *very* readable / understandable
78
+ compared to the 'other two' options we looked at. Nicely done and
79
+ thank you for helping us keep our mental sanity."
80
+
81
+ -- Wayne E. Seguin
82
+
83
+ minitest/test is a small and incredibly fast unit testing framework.
84
+ It provides a rich set of assertions to make your tests clean and
85
+ readable.
86
+
87
+ minitest/spec is a functionally complete spec engine. It hooks onto
88
+ minitest/test and seamlessly bridges test assertions over to spec
89
+ expectations.
90
+
91
+ minitest/benchmark is an awesome way to assert the performance of your
92
+ algorithms in a repeatable manner. Now you can assert that your newb
93
+ co-worker doesn't replace your linear algorithm with an exponential
94
+ one!
95
+
96
+ minitest/mock by Steven Baker, is a beautifully tiny mock (and stub)
97
+ object framework.
98
+
99
+ minitest/pride shows pride in testing and adds coloring to your test
100
+ output. I guess it is an example of how to write IO pipes too. :P
101
+
102
+ minitest/test is meant to have a clean implementation for language
103
+ implementors that need a minimal set of methods to bootstrap a working
104
+ test suite. For example, there is no magic involved for test-case
105
+ discovery.
106
+
107
+ "Again, I can't praise enough the idea of a testing/specing
108
+ framework that I can actually read in full in one sitting!"
109
+
110
+ -- Piotr Szotkowski
111
+
112
+ Comparing to rspec:
113
+
114
+ rspec is a testing DSL. minitest is ruby.
115
+
116
+ -- Adam Hawkins, "Bow Before MiniTest"
117
+
118
+ minitest doesn't reinvent anything that ruby already provides, like:
119
+ classes, modules, inheritance, methods. This means you only have to
120
+ learn ruby to use minitest and all of your regular OO practices like
121
+ extract-method refactorings still apply.
122
+ email:
123
+ - ryand-ruby@zenspider.com
124
+ executables: []
125
+ extensions: []
126
+ extra_rdoc_files:
127
+ - History.rdoc
128
+ - Manifest.txt
129
+ - README.rdoc
130
+ files:
131
+ - ".autotest"
132
+ - History.rdoc
133
+ - Manifest.txt
134
+ - README.rdoc
135
+ - Rakefile
136
+ - design_rationale.rb
137
+ - lib/hoe/minitest.rb
138
+ - lib/minitest.rb
139
+ - lib/minitest/assertions.rb
140
+ - lib/minitest/autorun.rb
141
+ - lib/minitest/benchmark.rb
142
+ - lib/minitest/expectations.rb
143
+ - lib/minitest/hell.rb
144
+ - lib/minitest/mock.rb
145
+ - lib/minitest/parallel.rb
146
+ - lib/minitest/pride.rb
147
+ - lib/minitest/pride_plugin.rb
148
+ - lib/minitest/spec.rb
149
+ - lib/minitest/test.rb
150
+ - lib/minitest/unit.rb
151
+ - test/minitest/metametameta.rb
152
+ - test/minitest/test_minitest_assertions.rb
153
+ - test/minitest/test_minitest_benchmark.rb
154
+ - test/minitest/test_minitest_mock.rb
155
+ - test/minitest/test_minitest_reporter.rb
156
+ - test/minitest/test_minitest_spec.rb
157
+ - test/minitest/test_minitest_test.rb
158
+ homepage: https://github.com/seattlerb/minitest
159
+ licenses:
160
+ - MIT
161
+ metadata: {}
162
+ post_install_message:
163
+ rdoc_options:
164
+ - "--main"
165
+ - README.rdoc
166
+ require_paths:
167
+ - lib
168
+ required_ruby_version: !ruby/object:Gem::Requirement
169
+ requirements:
170
+ - - "~>"
171
+ - !ruby/object:Gem::Version
172
+ version: '2.2'
173
+ required_rubygems_version: !ruby/object:Gem::Requirement
174
+ requirements:
175
+ - - ">="
176
+ - !ruby/object:Gem::Version
177
+ version: '0'
178
+ requirements: []
179
+ rubygems_version: 3.0.6
180
+ signing_key:
181
+ specification_version: 4
182
+ summary: minitest provides a complete suite of testing facilities supporting TDD,
183
+ BDD, mocking, and benchmarking
184
+ test_files: []
@@ -0,0 +1 @@
1
+ nS+�MN4~����g�����d���=������4 z%@A��!~s��,�hK!xOJ����L;��������ǕO�t s99���x�2�����AD$\a|��d~{�y \���G���*Ƞ,�7��!_�Ά�b��'�nt����"Ƈ’b��h��S �:��fo2�ސo$����{s�څ��^��̢�%��b��jM��F7�v�-�Gc(��l[5u��8K�#s��.�Rze6�kY��lm\W�����;�