summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorRoman Mueller <roman.mueller@gmail.com>2015-09-22 18:05:37 +0200
committerHelen Campbell <helen@puppetlabs.com>2015-09-28 16:01:11 +0100
commit6f1d164da6fca26d41d5962c575900dfc792f004 (patch)
treebb6ebdf6272e70d90f50d8c96bc4635cf7b9f560 /spec
parent48b658fc1c948103eaf04cd10671dd1a6fd61b8c (diff)
downloadpuppet-stdlib-6f1d164da6fca26d41d5962c575900dfc792f004.tar.gz
puppet-stdlib-6f1d164da6fca26d41d5962c575900dfc792f004.tar.bz2
Check for numeric values as empty fails on those
Diffstat (limited to 'spec')
-rwxr-xr-xspec/functions/empty_spec.rb2
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) }