Update stdlib and concat to 6.1.0 both
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / functions / is_function_available_spec.rb
index 887f069..4de7f9e 100644 (file)
@@ -6,4 +6,7 @@ describe 'is_function_available' do
   it { is_expected.to run.with_params('one', 'two').and_raise_error(Puppet::ParseError, %r{wrong number of arguments}i) }
   it { is_expected.to run.with_params('include').and_return(true) }
   it { is_expected.to run.with_params('no_such_function').and_return(false) }
+  it { is_expected.to run.with_params([]).and_return(false) }
+  it { is_expected.to run.with_params({}).and_return(false) }
+  it { is_expected.to run.with_params(1).and_return(false) }
 end