diff options
author | Claire McQuin <claire@getchef.com> | 2014-12-16 13:03:53 -0800 |
---|---|---|
committer | tyler-ball <tyleraball@gmail.com> | 2014-12-17 18:52:25 -0800 |
commit | 19f7b0f1668e5801f44570f52285f8a1bde516c0 (patch) | |
tree | d53a3cf4d9ae3eeb923054ab1f6799887e8de796 /lib/chef/formatters | |
parent | 5531cabf5640607874fd24c5e9c6006d848ec69b (diff) | |
download | chef-19f7b0f1668e5801f44570f52285f8a1bde516c0.tar.gz |
Unit tests for audit-mode in chef-solo.
* Audits are disabled by default.
* Also, updated spec file to use RSpec :let.
Diffstat (limited to 'lib/chef/formatters')
-rw-r--r-- | lib/chef/formatters/doc.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/chef/formatters/doc.rb b/lib/chef/formatters/doc.rb index 398c61fdc8..489888db8f 100644 --- a/lib/chef/formatters/doc.rb +++ b/lib/chef/formatters/doc.rb @@ -166,7 +166,7 @@ class Chef end def converge_failed(e) - # TODO do we want to do anything else in here? + # Currently a failed converge is handled the same way as a successful converge converge_complete end @@ -183,7 +183,6 @@ class Chef puts_line "" puts_line "Audit phase exception:" indent - # TODO error_mapper ? puts_line "#{error.message}" error.backtrace.each do |l| puts_line l |