diff options
author | Tim Smith <tsmith84@gmail.com> | 2020-05-06 16:54:20 -0700 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2020-05-06 16:54:20 -0700 |
commit | bed3ecfb36c61ec78b93155ad4ae3f3a01a2f57f (patch) | |
tree | 9cb0c8fd6f4bdf274a5d3d07be8d2c07b773e3f4 /chef-config/spec | |
parent | b39cf567a0e39c989c85bfc92b5352a655eeac05 (diff) | |
download | chef-bed3ecfb36c61ec78b93155ad4ae3f3a01a2f57f.tar.gz |
Align all our comments with the code
Autocorrected with chefstyle after enabling that cop. It was very hard to read some complex autocorrected blocks w/o this.
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'chef-config/spec')
-rw-r--r-- | chef-config/spec/unit/config_spec.rb | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/chef-config/spec/unit/config_spec.rb b/chef-config/spec/unit/config_spec.rb index 874e3a48c4..5cf814e7b3 100644 --- a/chef-config/spec/unit/config_spec.rb +++ b/chef-config/spec/unit/config_spec.rb @@ -186,29 +186,29 @@ RSpec.describe ChefConfig::Config do end describe "when configuring formatters" do - # if TTY and not(force-logger) - # formatter = configured formatter or default formatter - # formatter goes to STDOUT/ERR - # if log file is writeable - # log level is configured level or info - # log location is file - # else - # log level is warn - # log location is STDERR - # end - # elsif not(TTY) and force formatter - # formatter = configured formatter or default formatter - # if log_location specified - # formatter goes to log_location - # else - # formatter goes to STDOUT/ERR - # end - # else - # formatter = "null" - # log_location = configured-value or defualt - # log_level = info or defualt - # end - # + # if TTY and not(force-logger) + # formatter = configured formatter or default formatter + # formatter goes to STDOUT/ERR + # if log file is writeable + # log level is configured level or info + # log location is file + # else + # log level is warn + # log location is STDERR + # end + # elsif not(TTY) and force formatter + # formatter = configured formatter or default formatter + # if log_location specified + # formatter goes to log_location + # else + # formatter goes to STDOUT/ERR + # end + # else + # formatter = "null" + # log_location = configured-value or defualt + # log_level = info or defualt + # end + # it "has an empty list of formatters by default" do expect(ChefConfig::Config.formatters).to eq([]) end |