mutant-minitest 0.14.2 → 0.15.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
- data/lib/mutant/integration/minitest.rb +4 -8
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a9f39d2152c912a7bbc849839bc1e7f893ab4d7ee31a67cb16986c0e61b1c13d
|
|
4
|
+
data.tar.gz: 42783d5c7257bb583e2dc3c31b68305a8e3b747187ecd89749323f265eeb2d35
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b0243397b0ce2853cf8a8d4e53dbe4d9c6fad889a639ea25978b828bc1c3ddf60e053da3bc2ae3ceb8fa0117d48d4115d4cbfaccb4626c12df14d064cf59354d
|
|
7
|
+
data.tar.gz: 97589b196a329515d163879b0160c536c62225f9d03c44459beeda6b4304c589622f1385f413d2c307c83a027594d55e83749d2c239f491398c4020c60a8b8da
|
|
@@ -34,9 +34,7 @@ module Mutant
|
|
|
34
34
|
# Identification string
|
|
35
35
|
#
|
|
36
36
|
# @return [String]
|
|
37
|
-
def identification
|
|
38
|
-
IDENTIFICATION_FORMAT % [klass, test_method]
|
|
39
|
-
end
|
|
37
|
+
def identification = IDENTIFICATION_FORMAT % [klass, test_method]
|
|
40
38
|
memoize :identification
|
|
41
39
|
|
|
42
40
|
# Run test case
|
|
@@ -124,9 +122,7 @@ module Mutant
|
|
|
124
122
|
# All tests exposed by this integration
|
|
125
123
|
#
|
|
126
124
|
# @return [Array<Test>]
|
|
127
|
-
def all_tests
|
|
128
|
-
all_tests_index.keys
|
|
129
|
-
end
|
|
125
|
+
def all_tests = all_tests_index.keys
|
|
130
126
|
memoize :all_tests
|
|
131
127
|
|
|
132
128
|
alias_method :available_tests, :all_tests
|
|
@@ -134,8 +130,8 @@ module Mutant
|
|
|
134
130
|
private
|
|
135
131
|
|
|
136
132
|
def all_tests_index
|
|
137
|
-
all_test_cases.
|
|
138
|
-
|
|
133
|
+
all_test_cases.to_h do |test_case|
|
|
134
|
+
[construct_test(test_case), test_case]
|
|
139
135
|
end
|
|
140
136
|
end
|
|
141
137
|
memoize :all_tests_index
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mutant-minitest
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.15.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Markus Schirp
|
|
@@ -35,14 +35,14 @@ dependencies:
|
|
|
35
35
|
requirements:
|
|
36
36
|
- - '='
|
|
37
37
|
- !ruby/object:Gem::Version
|
|
38
|
-
version: 0.
|
|
38
|
+
version: 0.15.0
|
|
39
39
|
type: :runtime
|
|
40
40
|
prerelease: false
|
|
41
41
|
version_requirements: !ruby/object:Gem::Requirement
|
|
42
42
|
requirements:
|
|
43
43
|
- - '='
|
|
44
44
|
- !ruby/object:Gem::Version
|
|
45
|
-
version: 0.
|
|
45
|
+
version: 0.15.0
|
|
46
46
|
- !ruby/object:Gem::Dependency
|
|
47
47
|
name: mutex_m
|
|
48
48
|
requirement: !ruby/object:Gem::Requirement
|