Class: CodeStatistics
Overview
:nodoc:
Constant Summary collapse
- TEST_TYPES =
%w(Units Functionals Unit\ tests Functional\ tests Integration\ tests)
Instance Method Summary collapse
-
#initialize(*pairs) ⇒ CodeStatistics
constructor
A new instance of CodeStatistics.
- #to_s ⇒ Object
Constructor Details
#initialize(*pairs) ⇒ CodeStatistics
Returns a new instance of CodeStatistics.
5 6 7 8 9 |
# File 'lib/code_statistics.rb', line 5 def initialize(*pairs) @pairs = pairs @statistics = calculate_statistics @total = calculate_total if pairs.length > 1 end |
Instance Method Details
#to_s ⇒ Object
11 12 13 14 15 16 17 18 19 20 21 22 |
# File 'lib/code_statistics.rb', line 11 def to_s print_header @pairs.each { |pair| print_line(pair.first, @statistics[pair.first]) } print_splitter if @total print_line("Total", @total) print_splitter end print_code_test_stats end |