-
Notifications
You must be signed in to change notification settings - Fork 62
/
stats.rb
57 lines (49 loc) · 1.28 KB
/
stats.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
require 'mspec/runner/formatters/base'
class StatsPerFileFormatter < BaseFormatter
def initialize(out = nil)
super(out)
@data = {}
@root = File.expand_path(MSpecScript.get(:prefix) || '.')
end
def register
super
MSpec.register :load, self
MSpec.register :unload, self
end
# Resets the tallies so the counts are only for this file.
def load
tally.counter.examples = 0
tally.counter.errors = 0
tally.counter.failures = 0
tally.counter.tagged = 0
end
def unload
file = format_file MSpec.file
raise if @data.key?(file)
@data[file] = {
examples: tally.counter.examples,
errors: tally.counter.errors,
failures: tally.counter.failures,
tagged: tally.counter.tagged,
}
end
def finish
width = @data.keys.max_by(&:size).size
f = "%3d"
@data.each_pair do |file, data|
total = data[:examples]
passing = total - data[:errors] - data[:failures] - data[:tagged]
puts "#{file.ljust(width)} #{f % passing}/#{f % total}"
end
require 'yaml'
yaml = YAML.dump(@data)
File.write "results-#{RUBY_ENGINE}-#{RUBY_ENGINE_VERSION}.yml", yaml
end
private def format_file(file)
if file.start_with?(@root)
file[@root.size+1..-1]
else
raise file
end
end
end