Class: Validator::Details
  
  
  
  
    
      Instance Method Summary
      collapse
    
    
  
  
  
  
  
  
  
  
  
  
  #close, #colorize, #dump_failures, #dump_sentinel_summary, #dump_sentinel_warnings, #dump_summary, #example_group_finished, #example_group_started, #initialize
  
    Instance Method Details
    
      
  
  
    #dump_pending(notification)  ⇒ Object 
  
  
  
  
    
      
58
59
60
61 
     | 
    
      # File 'spec/support/formatters/details.rb', line 58
def dump_pending notification
  dump_sentinel_warnings
  super notification
end 
     | 
  
 
    
      
  
  
    #example_failed(notification)  ⇒ Object 
  
  
  
  
    
      
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56 
     | 
    
      # File 'spec/support/formatters/details.rb', line 41
def example_failed notification
        presenter = RSpec::Core::Formatters::ExceptionPresenter.new(notification.example.execution_result.exception, notification.example, :indentation => 0)
  
  error = presenter.message_lines.map do |line|
    colorize("  #{line}\n",:failure)
  end.join
  @output << error << "\n"
  backtrace = presenter.formatted_backtrace.map do |line|
    colorize("  # #{line}\n",:light_blue)
  end.join
  @output << backtrace << "\n"
end
     | 
  
 
    
      
  
  
    #example_passed(notification)  ⇒ Object 
  
  
  
  
  
    
      
37
38
39 
     | 
    
      # File 'spec/support/formatters/details.rb', line 37
def example_passed notification   @output << colorize("    Passed\n\n",:success)
end
     | 
  
 
    
      
  
  
    #example_pending(notification)  ⇒ Object 
  
  
  
  
    
      
29
30
31 
     | 
    
      # File 'spec/support/formatters/details.rb', line 29
def example_pending notification
  @output << colorize("    Pending\n\n", :pending)
end
     | 
  
 
    
      
  
  
    #example_started(notification)  ⇒ Object 
  
  
  
  
    
      
33
34
35 
     | 
    
      # File 'spec/support/formatters/details.rb', line 33
def example_started notification
  @output << colorize("\n#{notification.example.full_description}\n",:bold)
end
     | 
  
 
    
      
  
  
    #log(notification)  ⇒ Object 
  
  
  
  
    
      
13
14
15 
     | 
    
      # File 'spec/support/formatters/details.rb', line 13
def log notification
  @output << "    #{notification.message}\n"
end
     | 
  
 
    
      
  
  
    #message(notification)  ⇒ Object 
  
  
  
  
    
      
25
26
27 
     | 
    
      # File 'spec/support/formatters/details.rb', line 25
def message notification
  @output << "  #{notification.message}\n"
end
     | 
  
 
    
      
  
  
    #start(notification)  ⇒ Object 
  
  
  
  
    
      
9
10
11 
     | 
    
      # File 'spec/support/formatters/details.rb', line 9
def start notification
  @output << "\n"
end 
     | 
  
 
    
      
  
  
    #step(notification)  ⇒ Object 
  
  
  
  
    
      
21
22
23 
     | 
    
      # File 'spec/support/formatters/details.rb', line 21
def step notification
  @output << colorize("    #{notification.message}\n",:cyan)
end
     | 
  
 
    
      
  
  
    #warning(notification)  ⇒ Object 
  
  
  
  
    
      
17
18
19 
     | 
    
      # File 'spec/support/formatters/details.rb', line 17
def warning notification
  @output << colorize("    Warning: #{notification.message}\n",:yellow)
end
     |