minitest 5.2.1 → 5.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/History.txt +10 -0
- data/README.txt +3 -0
- data/lib/minitest.rb +1 -1
- data/lib/minitest/benchmark.rb +3 -3
- data/lib/minitest/spec.rb +5 -1
- data/test/minitest/test_minitest_benchmark.rb +7 -0
- data/test/minitest/test_minitest_spec.rb +5 -3
- metadata +6 -6
- metadata.gz.sig +5 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0298ef5657934b0ce29bce4d32eb327726391cd0
|
4
|
+
data.tar.gz: 41eb94c7d812fd5e771c108e11b5a26ca3e33075
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 158a3553a7678e92a735da2c116f496522e17cb6ebd770efade0b9c4f9b10b0496963abec21cc1159aa12cc1808c28495e888cb6e184d399573a9c037ed26897
|
7
|
+
data.tar.gz: b95653c4c750fe3f0547bbeb07ddfe919d151d1e9cde12a011a04cb5c679b5aa651700b8fdc767a6fe2889477333e9ca6d1dafc043ba03850c96ed63b48326ed
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data.tar.gz.sig
CHANGED
Binary file
|
data/History.txt
CHANGED
@@ -1,3 +1,13 @@
|
|
1
|
+
=== 5.2.2 / 2014-01-22
|
2
|
+
|
3
|
+
* 1 minor enhancement:
|
4
|
+
|
5
|
+
* Spec#let raises ArgumentError if you override _any_ instance method (except subject). (rynr)
|
6
|
+
|
7
|
+
* 1 bug fix:
|
8
|
+
|
9
|
+
* Fixed up benchmark spec doco and added a test to demonstrate. (bhenderson)
|
10
|
+
|
1
11
|
=== 5.2.1 / 2014-01-07
|
2
12
|
|
3
13
|
* 1 bug fix:
|
data/README.txt
CHANGED
@@ -397,6 +397,7 @@ minitest-context :: Defines contexts for code reuse in MiniTest
|
|
397
397
|
minitest-debugger :: Wraps assert so failed assertions drop into
|
398
398
|
the ruby debugger.
|
399
399
|
minitest-display :: Patches MiniTest to allow for an easily configurable output.
|
400
|
+
minitest-documentation :: Minimal documentation format inspired by rspec's
|
400
401
|
minitest-doc_reporter :: Detailed output inspired by rspec's documentation
|
401
402
|
format.
|
402
403
|
minitest-emoji :: Print out emoji for your test passes, fails, and skips.
|
@@ -433,12 +434,14 @@ minitest-spec-rails :: Drop in MiniTest::Spec superclass for ActiveSuppo
|
|
433
434
|
minitest-stub_any_instance :: Stub any instance of a method on the given class for the duration of a block
|
434
435
|
minitest-stub-const :: Stub constants for the duration of a block
|
435
436
|
minitest-tags :: add tags for minitest
|
437
|
+
minitest-vcr :: Automatic cassette managment with MiniTest::Spec and VCR
|
436
438
|
minitest-wscolor :: Yet another test colorizer.
|
437
439
|
minitest_owrapper :: Get tests results as a TestResult object.
|
438
440
|
minitest_should :: Shoulda style syntax for minitest test::unit.
|
439
441
|
minitest_tu_shim :: minitest_tu_shim bridges between test/unit and minitest.
|
440
442
|
mongoid-minitest :: MiniTest matchers for Mongoid.
|
441
443
|
pry-rescue :: A pry plugin w/ minitest support. See pry-rescue/minitest.rb.
|
444
|
+
rspec2minitest :: Easily translate any RSpec matchers to MiniTest assertions and expectations.
|
442
445
|
|
443
446
|
== Unknown Extensions:
|
444
447
|
|
data/lib/minitest.rb
CHANGED
data/lib/minitest/benchmark.rb
CHANGED
@@ -376,7 +376,7 @@ module Minitest
|
|
376
376
|
##
|
377
377
|
# Create a benchmark that verifies that the performance is linear.
|
378
378
|
#
|
379
|
-
# describe "my class" do
|
379
|
+
# describe "my class Bench" do
|
380
380
|
# bench_performance_linear "fast_algorithm", 0.9999 do |n|
|
381
381
|
# @obj.fast_algorithm(n)
|
382
382
|
# end
|
@@ -391,7 +391,7 @@ module Minitest
|
|
391
391
|
##
|
392
392
|
# Create a benchmark that verifies that the performance is constant.
|
393
393
|
#
|
394
|
-
# describe "my class" do
|
394
|
+
# describe "my class Bench" do
|
395
395
|
# bench_performance_constant "zoom_algorithm!" do |n|
|
396
396
|
# @obj.zoom_algorithm!(n)
|
397
397
|
# end
|
@@ -406,7 +406,7 @@ module Minitest
|
|
406
406
|
##
|
407
407
|
# Create a benchmark that verifies that the performance is exponential.
|
408
408
|
#
|
409
|
-
# describe "my class" do
|
409
|
+
# describe "my class Bench" do
|
410
410
|
# bench_performance_exponential "algorithm" do |n|
|
411
411
|
# @obj.algorithm(n)
|
412
412
|
# end
|
data/lib/minitest/spec.rb
CHANGED
@@ -223,7 +223,11 @@ class Minitest::Spec < Minitest::Test
|
|
223
223
|
# Why use let instead of def? I honestly don't know.
|
224
224
|
|
225
225
|
def let name, &block
|
226
|
-
|
226
|
+
name = name.to_s
|
227
|
+
raise ArgumentError, 'name cannot begin with "test"' if name =~ /\Atest/
|
228
|
+
raise ArgumentError, "##{name} cannot be overwritten" if
|
229
|
+
(instance_methods.map(&:to_s) - %w[subject]).include? name
|
230
|
+
|
227
231
|
define_method name do
|
228
232
|
@_memoized ||= {}
|
229
233
|
@_memoized.fetch(name) { |k| @_memoized[k] = instance_eval(&block) }
|
@@ -553,9 +553,11 @@ describe Minitest::Spec, :let do
|
|
553
553
|
end
|
554
554
|
|
555
555
|
it 'raises an error if the name begins with "test"' do
|
556
|
-
|
557
|
-
|
558
|
-
|
556
|
+
proc { self.class.let(:test_value) { true } }.must_raise ArgumentError
|
557
|
+
end
|
558
|
+
|
559
|
+
it 'raises an error if the name shadows a normal instance method' do
|
560
|
+
proc { self.class.let(:message) { true } }.must_raise ArgumentError
|
559
561
|
end
|
560
562
|
|
561
563
|
it 'procs come after dont_flip' do
|
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.2.
|
4
|
+
version: 5.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ryan Davis
|
@@ -29,7 +29,7 @@ cert_chain:
|
|
29
29
|
Y4evBVezr3SjXz08vPqRO5YRdO3zfeMT8gBjRqZjWJGMZ2lD4XNfrs7eky74CyZw
|
30
30
|
xx3n58i0lQkBE1EpKE0lFu/y
|
31
31
|
-----END CERTIFICATE-----
|
32
|
-
date: 2014-01-
|
32
|
+
date: 2014-01-22 00:00:00.000000000 Z
|
33
33
|
dependencies:
|
34
34
|
- !ruby/object:Gem::Dependency
|
35
35
|
name: rdoc
|
@@ -51,14 +51,14 @@ dependencies:
|
|
51
51
|
requirements:
|
52
52
|
- - ~>
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: '3.
|
54
|
+
version: '3.8'
|
55
55
|
type: :development
|
56
56
|
prerelease: false
|
57
57
|
version_requirements: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
59
|
- - ~>
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: '3.
|
61
|
+
version: '3.8'
|
62
62
|
description: |-
|
63
63
|
minitest provides a complete suite of testing facilities supporting
|
64
64
|
TDD, BDD, mocking, and benchmarking.
|
@@ -123,6 +123,7 @@ extra_rdoc_files:
|
|
123
123
|
- README.txt
|
124
124
|
files:
|
125
125
|
- .autotest
|
126
|
+
- .gemtest
|
126
127
|
- History.txt
|
127
128
|
- Manifest.txt
|
128
129
|
- README.txt
|
@@ -148,7 +149,6 @@ files:
|
|
148
149
|
- test/minitest/test_minitest_reporter.rb
|
149
150
|
- test/minitest/test_minitest_spec.rb
|
150
151
|
- test/minitest/test_minitest_unit.rb
|
151
|
-
- .gemtest
|
152
152
|
homepage: https://github.com/seattlerb/minitest
|
153
153
|
licenses:
|
154
154
|
- MIT
|
@@ -171,7 +171,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
171
171
|
version: '0'
|
172
172
|
requirements: []
|
173
173
|
rubyforge_project: minitest
|
174
|
-
rubygems_version: 2.1
|
174
|
+
rubygems_version: 2.2.1
|
175
175
|
signing_key:
|
176
176
|
specification_version: 4
|
177
177
|
summary: minitest provides a complete suite of testing facilities supporting TDD,
|
metadata.gz.sig
CHANGED
@@ -1,2 +1,5 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
EU����?���U�Ћ�
|
2
|
+
�;_�S�YH9F�g٢T|�r��|�9�K䗢v��ǹ�kI���4�@�t�8��p蕥�
|
3
|
+
���eg��I)O����U�<��X�e�x
|
4
|
+
��:N3�7d�B�VH��o�∕>Ƽ}��^��8���'�
|
5
|
+
`��9/B�:/�;�ƗR���<�*Q (�a�,@gd�B�T�G�
|