test_bench-output 3.0.0.1 → 3.0.0.2
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/test_bench/output/output.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b3b2f61dbfd06fab1b3df8491ded30a2986bb24962d518c81ffdc0398c2c9c80
|
4
|
+
data.tar.gz: f5966ba3d8a85e8de771b07e2fbc583f7f4975064a1af74d4cc09088b906f7df
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4216c20f0c7d0b14ab2a616b1a00047f0b129969a39980f0a785102cf0c573980e0e2cd35473f7c4be7d796034e30a42446a61cbae6b7f3866182612494d2724
|
7
|
+
data.tar.gz: 9ba6d657cdfecc4f49f385c9114a770a0a040a2a5640b5fbe04daa38d743b05ff3ca6255d01a16f44d83db8ff83796ea0c71a3f41bafc0f152ec9f1834404f8a
|
@@ -380,9 +380,9 @@ module TestBench
|
|
380
380
|
result = status.result
|
381
381
|
|
382
382
|
case result
|
383
|
-
when Result.aborted
|
383
|
+
when Result.aborted, Result.failed
|
384
384
|
writer.style(:red)
|
385
|
-
when Result.passed, Result.
|
385
|
+
when Result.passed, Result.incomplete
|
386
386
|
writer.style(:green)
|
387
387
|
end
|
388
388
|
|