rspec_count_formatter 0.1.2 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/rspec_count_formatter.rb +1 -1
- data/rspec_count_formatter.gemspec +1 -1
- 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: 8aa5e99113d586fb6f85d73cbbc06dbbc0b75f6a903535a40c3d83adf6990b54
|
4
|
+
data.tar.gz: 556d5118c2e608b6d2472ac480f4b71aec37542f2476f6330f4fcf7c97bcffe3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3c92c6f2836583b55599bf3b79b8509e996e59181bcf105f23b3143511ffe6fd7496a04f51f0fe3d420ed037661dff5d4f5b204060364312503916198ff8ef3a
|
7
|
+
data.tar.gz: a6b74bb5246dd67aff4f7f03af69941f0c7bb321bb27939bcd3e5f7e95db6d2427efc5038c028d3eb9102141ab601c334961fcda4be101847c2709b5d5184241
|
@@ -39,7 +39,7 @@ class RspecCountFormatter < RSpec::Core::Formatters::BaseTextFormatter
|
|
39
39
|
private
|
40
40
|
|
41
41
|
def status(example)
|
42
|
-
done =
|
42
|
+
done = (@passed + @pending + @failed)
|
43
43
|
@width ||= @total.to_s.length
|
44
44
|
|
45
45
|
output.puts format("%#{@width}<done>d / %#{@width}<total>d: %<example>s",
|