Update stdlib and concat to 6.1.0 both
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / functions / validate_string_spec.rb
index 27570d4..40522c6 100644 (file)
@@ -28,6 +28,7 @@ describe 'validate_string' do
       it { is_expected.to run.with_params({}).and_raise_error(Puppet::ParseError, %r{is not a string}) }
       it { is_expected.to run.with_params(1).and_raise_error(Puppet::ParseError, %r{is not a string}) }
       it { is_expected.to run.with_params(true).and_raise_error(Puppet::ParseError, %r{is not a string}) }
+      it { is_expected.to run.with_params('one', 2).and_raise_error(Puppet::ParseError, %r{is not a string}) }
     end
   end
 end