Class: CodeStatistics

Inherits:
Object
  • Object
show all
Defined in:
lib/rails/code_statistics.rb

Overview

:nodoc:

Constant Summary collapse

TEST_TYPES =
['Controller tests',
'Helper tests',
'Model tests',
'Mailer tests',
'Job tests',
'Integration tests',
'Functional tests (old)',
'Unit tests (old)']

Instance Method Summary collapse

Constructor Details

#initialize(*pairs) ⇒ CodeStatistics

Returns a new instance of CodeStatistics.



14
15
16
17
18
# File 'lib/rails/code_statistics.rb', line 14

def initialize(*pairs)
  @pairs      = pairs
  @statistics = calculate_statistics
  @total      = calculate_total if pairs.length > 1
end

Instance Method Details

#to_sObject



20
21
22
23
24
25
26
27
28
29
30
31
# File 'lib/rails/code_statistics.rb', line 20

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