Update stdlib
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / functions / flatten_spec.rb
1 require 'spec_helper'
2
3 describe 'flatten' do
4   it { is_expected.not_to eq(nil) }
5   it { is_expected.to run.with_params().and_raise_error(Puppet::ParseError) }
6   it { is_expected.to run.with_params([], []).and_raise_error(Puppet::ParseError) }
7   it { is_expected.to run.with_params(1).and_raise_error(Puppet::ParseError) }
8   it { is_expected.to run.with_params('one').and_raise_error(Puppet::ParseError) }
9   it { is_expected.to run.with_params([]).and_return([]) }
10   it { is_expected.to run.with_params(['one']).and_return(['one']) }
11   it { is_expected.to run.with_params([['one']]).and_return(['one']) }
12   it { is_expected.to run.with_params(["a","b","c","d","e","f","g"]).and_return(["a","b","c","d","e","f","g"]) }
13   it { is_expected.to run.with_params([["a","b",["c",["d","e"],"f","g"]]]).and_return(["a","b","c","d","e","f","g"]) }
14   it { is_expected.to run.with_params(["ã","β",["ĉ",["đ","ẽ","ƒ","ġ"]]]).and_return(["ã","β","ĉ","đ","ẽ","ƒ","ġ"]) }
15 end