Update stdlib and concat to 6.1.0 both
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / functions / is_function_available_spec.rb
1 require 'spec_helper'
2
3 describe 'is_function_available' do
4   it { is_expected.not_to eq(nil) }
5   it { is_expected.to run.with_params.and_raise_error(Puppet::ParseError, %r{wrong number of arguments}i) }
6   it { is_expected.to run.with_params('one', 'two').and_raise_error(Puppet::ParseError, %r{wrong number of arguments}i) }
7   it { is_expected.to run.with_params('include').and_return(true) }
8   it { is_expected.to run.with_params('no_such_function').and_return(false) }
9   it { is_expected.to run.with_params([]).and_return(false) }
10   it { is_expected.to run.with_params({}).and_return(false) }
11   it { is_expected.to run.with_params(1).and_return(false) }
12 end