diff options
author | Roman Mueller <roman.mueller@gmail.com> | 2015-09-22 18:05:37 +0200 |
---|---|---|
committer | Helen Campbell <helen@puppetlabs.com> | 2015-09-28 16:01:11 +0100 |
commit | 6f1d164da6fca26d41d5962c575900dfc792f004 (patch) | |
tree | bb6ebdf6272e70d90f50d8c96bc4635cf7b9f560 /spec/functions | |
parent | 48b658fc1c948103eaf04cd10671dd1a6fd61b8c (diff) | |
download | puppet-stdlib-6f1d164da6fca26d41d5962c575900dfc792f004.tar.gz puppet-stdlib-6f1d164da6fca26d41d5962c575900dfc792f004.tar.bz2 |
Check for numeric values as empty fails on those
Diffstat (limited to 'spec/functions')
-rwxr-xr-x | spec/functions/empty_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/functions/empty_spec.rb b/spec/functions/empty_spec.rb index 94b1c68..a3a25d6 100755 --- a/spec/functions/empty_spec.rb +++ b/spec/functions/empty_spec.rb @@ -3,11 +3,11 @@ require 'spec_helper' describe 'empty' do it { is_expected.not_to eq(nil) } it { is_expected.to run.with_params().and_raise_error(Puppet::ParseError) } - it { is_expected.to run.with_params(0).and_raise_error(Puppet::ParseError) } it { pending("Current implementation ignores parameters after the first.") is_expected.to run.with_params('one', 'two').and_raise_error(Puppet::ParseError) } + it { is_expected.to run.with_params(0).and_return(false) } it { is_expected.to run.with_params('').and_return(true) } it { is_expected.to run.with_params('one').and_return(false) } |