diff options
author | Claire McQuin <claire@getchef.com> | 2014-10-29 14:55:12 -0700 |
---|---|---|
committer | Claire McQuin <claire@getchef.com> | 2014-10-29 15:59:04 -0700 |
commit | b92c309b0f1aa0837f76ab89d6c81c36076ceca9 (patch) | |
tree | 47bda3c9132fcfa2584c0a6050f1112c58efef00 /spec/spec_helper.rb | |
parent | 9202b301276471d0ee48ece42df0ab0bd8eb724e (diff) | |
download | chef-b92c309b0f1aa0837f76ab89d6c81c36076ceca9.tar.gz |
Remove treat_symbols_as_metadata_keys_with_true_values = true, now true by default
Diffstat (limited to 'spec/spec_helper.rb')
-rw-r--r-- | spec/spec_helper.rb | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index cc5ba8c3ac..b1a0ebaa58 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -18,12 +18,6 @@ # If you need to add anything in here, don't. # Add it to one of the files in spec/support -# Configure this first so it doesn't trigger annoying warning when we use it. -# Main rspec configuration comes later -RSpec.configure do |config| - config.treat_symbols_as_metadata_keys_with_true_values = true -end - # Abuse ruby's constant lookup to avoid undefined constant errors module Shell JUST_TESTING_MOVE_ALONG = true unless defined? JUST_TESTING_MOVE_ALONG @@ -159,7 +153,6 @@ RSpec.configure do |config| } config.run_all_when_everything_filtered = true - config.treat_symbols_as_metadata_keys_with_true_values = true config.before(:each) do Chef::Config.reset |