summaryrefslogtreecommitdiff
path: root/lib/chef/formatters
diff options
context:
space:
mode:
authortyler-ball <tyleraball@gmail.com>2014-11-06 07:33:35 -0800
committertyler-ball <tyleraball@gmail.com>2014-12-17 18:47:26 -0800
commit2bb912157470f55975f2e50e3792132478639a78 (patch)
tree717d21be119adb2e072146d6f7c2183a11d013d9 /lib/chef/formatters
parentb9b4d3bfd6ec6196cb78094e589c094edb61b501 (diff)
downloadchef-2bb912157470f55975f2e50e3792132478639a78.tar.gz
Preparing for demo - using rspec documentation formatter for output instead of the proxy
Diffstat (limited to 'lib/chef/formatters')
-rw-r--r--lib/chef/formatters/doc.rb6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/chef/formatters/doc.rb b/lib/chef/formatters/doc.rb
index 96ca283b9f..d9c9124713 100644
--- a/lib/chef/formatters/doc.rb
+++ b/lib/chef/formatters/doc.rb
@@ -164,18 +164,20 @@ class Chef
# Called before audit phase starts
def audit_phase_start(run_context)
puts_line ""
- puts_line "Audit phase starting"
+ puts_line "++ Audit phase starting ++"
end
# Called when audit phase successfully finishes
def audit_phase_complete
- puts_line "Audit phase ended"
+ puts_line ""
+ puts_line "++ Audit phase ended ++ "
end
# Called if there is an uncaught exception during the audit phase. The audit runner should
# be catching and handling errors from the examples, so this is only uncaught errors (like
# bugs in our handling code)
def audit_phase_failed(error)
+ puts_line ""
puts_line "Audit phase exception:"
indent
# TODO error_mapper ?