summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
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