minitest-summarize 0.0.2 → 0.0.3
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/README.md +2 -2
- data/VERSION +1 -1
- data/lib/minitest/summarize_reporter.rb +2 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dc7a751dadb475f7d9ca8593a3c12bd585447617
|
4
|
+
data.tar.gz: f0987589efcec86f75d322bd41381f6ce0f22d5b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bd39ef5680be6b44f86ea06a600f6993e3f11a8afee55a38ba8c208a6bb9bb5b3de78e4741a159afa01d4d468c4eb4d80e6209760191fa8172e987f727991726
|
7
|
+
data.tar.gz: f0e40db2d9de8fe9ec312366d80da74faa9b2e075cf085f9c0666f42a76758379ed77141093507889468b802faeeab0888710bef480b2dc74eb1f7bcae0c590d
|
data/README.md
CHANGED
@@ -33,9 +33,9 @@ Then, when your tests are run, it'll display a summary before the results long
|
|
33
33
|
form results:
|
34
34
|
|
35
35
|
```text
|
36
|
-
[
|
36
|
+
[Passed: 30] [Failed 2] [Error: 0] [Skipped: 1]
|
37
37
|
|
38
|
-
Finished in 0.
|
38
|
+
Finished in 0.002721s, 12129.5569 runs/s, 11761.9946 assertions/s.
|
39
39
|
|
40
40
|
1) Failure:
|
41
41
|
do some tests#test_0031_has some fails [/Users/rcarnahan/repos/minitest-summarize/spec/main_spec.rb:14]:
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.3
|
@@ -34,7 +34,7 @@ module Minitest
|
|
34
34
|
end
|
35
35
|
|
36
36
|
def self.color?
|
37
|
-
@color
|
37
|
+
@color
|
38
38
|
end
|
39
39
|
|
40
40
|
def initialize(io)
|
@@ -43,6 +43,7 @@ module Minitest
|
|
43
43
|
@io = io
|
44
44
|
@summary = {}
|
45
45
|
@last_length = 0
|
46
|
+
@color = true
|
46
47
|
|
47
48
|
SUMMARY_LABELS.keys.each { |key| @summary[key] = 0 }
|
48
49
|
end
|