438553ba8ac116d4ee1cd613fe517ed0aad4b07d
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / functions / pick_spec.rb
1 require 'spec_helper'
2
3 describe 'pick' do
4   it { is_expected.not_to eq(nil) }
5   it { is_expected.to run.with_params().and_raise_error(Puppet::ParseError, /must receive at least one non empty value/) }
6   it { is_expected.to run.with_params('', nil, :undef, :undefined).and_raise_error(Puppet::ParseError, /must receive at least one non empty value/) }
7   it { is_expected.to run.with_params('one', 'two').and_return('one') }
8   it { is_expected.to run.with_params('', 'two').and_return('two') }
9   it { is_expected.to run.with_params(:undef, 'two').and_return('two') }
10   it { is_expected.to run.with_params(:undefined, 'two').and_return('two') }
11   it { is_expected.to run.with_params(nil, 'two').and_return('two') }
12
13   context 'should run with UTF8 and double byte characters' do
14   it { is_expected.to run.with_params(nil, 'このテキスト').and_return('このテキスト') }
15   it { is_expected.to run.with_params('', 'ŝẳмрłề џţƒ8 ţẽם', 'このテキスト').and_return('ŝẳмрłề џţƒ8 ţẽם') }
16   end
17 end