X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=3rdparty%2Fmodules%2Fstdlib%2Fspec%2Ftype_aliases%2Fstring_spec.rb;fp=3rdparty%2Fmodules%2Fstdlib%2Fspec%2Ftype_aliases%2Fstring_spec.rb;h=93a9d0f137346cdfa6e972bf62d4a06386dd6074;hb=9dd86576df2182653f8e96f51f11c917341eb4ce;hp=0000000000000000000000000000000000000000;hpb=88887aa2a8ca345d6f79fccb336a9bb9ae8443a2;p=mirror%2Fdsa-puppet.git diff --git a/3rdparty/modules/stdlib/spec/type_aliases/string_spec.rb b/3rdparty/modules/stdlib/spec/type_aliases/string_spec.rb new file mode 100644 index 000000000..93a9d0f13 --- /dev/null +++ b/3rdparty/modules/stdlib/spec/type_aliases/string_spec.rb @@ -0,0 +1,30 @@ +require 'spec_helper' + +if Puppet::Util::Package.versioncmp(Puppet.version, '4.5.0') >= 0 + describe 'Stdlib::Compat::String' do + describe 'accepts strings' do + [ + '', + 'one', + nil, + ].each do |value| + describe value.inspect do + it { is_expected.to allow_value(value) } + end + end + end + + describe 'rejects other values' do + [ + [], + {}, + 1, + true, + ].each do |value| + describe value.inspect do + it { is_expected.not_to allow_value(value) } + end + end + end + end +end