summaryrefslogtreecommitdiff
path: root/spec/functions/validate_absolute_path_spec.rb
diff options
context:
space:
mode:
authorDavid Schmitt <david.schmitt@puppet.com>2016-08-09 10:06:53 +0100
committerGitHub <noreply@github.com>2016-08-09 10:06:53 +0100
commitf9c74fb04ecb9daccfa8b35b854ffd0601187a16 (patch)
treec91448e5face966d92d713b537316adcd08fbac3 /spec/functions/validate_absolute_path_spec.rb
parente39fe01ea01719b97110341cacc4b4e2784a7d1a (diff)
parent22fbe723acd22ae3491c41beeacbc76853c6820e (diff)
Merge pull request #633 from tphoney/modules-3532
(modules-3532) deprecate string type checks
Diffstat (limited to 'spec/functions/validate_absolute_path_spec.rb')
-rwxr-xr-xspec/functions/validate_absolute_path_spec.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/spec/functions/validate_absolute_path_spec.rb b/spec/functions/validate_absolute_path_spec.rb
index 4a8404d..ffdb2c8 100755
--- a/spec/functions/validate_absolute_path_spec.rb
+++ b/spec/functions/validate_absolute_path_spec.rb
@@ -1,6 +1,13 @@
require 'spec_helper'
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
+ scope.expects(:warn).with(includes('This method is deprecated')).twice
+ is_expected.to run.with_params('c:/')
+ end
+
describe 'signature validation' do
it { is_expected.not_to eq(nil) }
it { is_expected.to run.with_params().and_raise_error(Puppet::ParseError, /wrong number of arguments/i) }