summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authordanielsdeleo <dan@getchef.com>2015-05-15 13:42:04 -0700
committerdanielsdeleo <dan@getchef.com>2015-05-15 13:42:04 -0700
commit5404e6f2711efff087f570d8ac0dc062ff8de821 (patch)
tree5ca2154d0a165fc878cbc5e12b3ce80242f46302 /spec
parent81235ea8f9478679513b83e5ddcc4c6de09f41d5 (diff)
downloadmixlib-shellout-5404e6f2711efff087f570d8ac0dc062ff8de821.tar.gz
Fix 2 ruby warnings for uninitialized variables
Diffstat (limited to 'spec')
-rw-r--r--spec/spec_helper.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index b435176..2fab44c 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -23,4 +23,7 @@ RSpec.configure do |config|
config.run_all_when_everything_filtered = true
config.treat_symbols_as_metadata_keys_with_true_values = true
+
+ config.warnings = true
+
end