Update puppetlabs/stdlib module
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / functions / count_spec.rb
1 require 'spec_helper'
2
3 describe 'count' do
4   it { is_expected.not_to eq(nil) }
5   it { is_expected.to run.with_params.and_raise_error(ArgumentError) }
6   it { is_expected.to run.with_params('one').and_raise_error(ArgumentError) }
7   it { is_expected.to run.with_params('one', 'two').and_return(1) }
8   it {
9     pending('should actually be like this, and not like above')
10     is_expected.to run.with_params('one', 'two').and_raise_error(ArgumentError)
11   }
12   it { is_expected.to run.with_params('one', 'two', 'three').and_raise_error(ArgumentError) }
13   it { is_expected.to run.with_params(['one', 'two', 'three']).and_return(3) }
14   it { is_expected.to run.with_params(['one', 'two', 'two'], 'two').and_return(2) }
15   it { is_expected.to run.with_params(['one', nil, 'two']).and_return(2) }
16   it { is_expected.to run.with_params(['one', '', 'two']).and_return(2) }
17   it { is_expected.to run.with_params(['one', :undef, 'two']).and_return(2) }
18
19   it { is_expected.to run.with_params(['ổņ℮', 'ŧщộ', 'three']).and_return(3) }
20   it { is_expected.to run.with_params(['ổņ℮', 'ŧщộ', 'ŧщộ'], 'ŧщộ').and_return(2) }
21   it { is_expected.to run.with_params(['ổņ℮', nil, 'ŧщộ']).and_return(2) }
22   it { is_expected.to run.with_params(['ổņ℮', :undef, 'ŧщộ']).and_return(2) }
23 end