diff options
author | Peter Souter <p.souter@kainos.com> | 2014-12-04 14:15:03 +0000 |
---|---|---|
committer | Peter Souter <p.souter@kainos.com> | 2014-12-04 14:15:03 +0000 |
commit | 7c570f75a5b88b1eb057bce3f7c4cad9cac83496 (patch) | |
tree | 99e6270125b2cc1fcddff3415ea9007edf3c1676 /spec/acceptance | |
parent | ed192a04648db7786d072bef23ed72849115d9de (diff) |
(MODULES-444) Acceptance test for primitives
`concat` should be able to concat arrays and primitives
Diffstat (limited to 'spec/acceptance')
-rwxr-xr-x | spec/acceptance/concat_spec.rb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/spec/acceptance/concat_spec.rb b/spec/acceptance/concat_spec.rb index 7bda365..0d5e831 100755 --- a/spec/acceptance/concat_spec.rb +++ b/spec/acceptance/concat_spec.rb @@ -14,5 +14,16 @@ describe 'concat function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('oper apply_manifest(pp, :catch_failures => true) end + it 'should concat arrays and primitives to array' do + pp = <<-EOS + $output = concat(['1','2','3'],'4','5','6',['7','8','9']) + validate_array($output) + if size($output) != 9 { + fail("${output} should have 9 elements.") + } + EOS + + apply_manifest(pp, :catch_failures => true) + end end end |