summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorHelen Campbell <helen@puppetlabs.com>2016-09-26 16:45:23 +0100
committerHelen Campbell <helen@puppetlabs.com>2016-09-26 16:45:23 +0100
commit02fc7f8e4912e0def8e6717c4de38a951bf4b741 (patch)
tree80f0f362c9c3ec12d0951de47227a7641da3f8bc /spec
parent80daf167239d00fdbce38c6f0c86bf8958134368 (diff)
Remove duplicate deprecation warnings
Diffstat (limited to 'spec')
-rwxr-xr-xspec/functions/validate_absolute_path_spec.rb3
-rwxr-xr-xspec/functions/validate_bool_spec.rb3
2 files changed, 2 insertions, 4 deletions
diff --git a/spec/functions/validate_absolute_path_spec.rb b/spec/functions/validate_absolute_path_spec.rb
index 75df6bc..bdb55f0 100755
--- a/spec/functions/validate_absolute_path_spec.rb
+++ b/spec/functions/validate_absolute_path_spec.rb
@@ -7,9 +7,8 @@ describe 'validate_absolute_path' do
# Checking for deprecation warning
it 'should display a single deprecation' do
- # called twice because validate_absolute_path calls is_absolute_path
ENV['STDLIB_LOG_DEPRECATIONS'] = "true"
- scope.expects(:warning).with(includes('This method is deprecated')).twice
+ scope.expects(:warning).with(includes('This method is deprecated'))
is_expected.to run.with_params('c:/')
end
diff --git a/spec/functions/validate_bool_spec.rb b/spec/functions/validate_bool_spec.rb
index 4bd1453..8b7e438 100755
--- a/spec/functions/validate_bool_spec.rb
+++ b/spec/functions/validate_bool_spec.rb
@@ -7,9 +7,8 @@ describe 'validate_bool' do
# Checking for deprecation warning
it 'should display a single deprecation' do
- #called twice, because validate_bool calls is_bool
ENV['STDLIB_LOG_DEPRECATIONS'] = "true"
- scope.expects(:warning).with(includes('This method is deprecated')).twice
+ scope.expects(:warning).with(includes('This method is deprecated'))
is_expected.to run.with_params(true)
end