summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Souter <p.souter@kainos.com>2014-12-04 14:15:33 +0000
committerPeter Souter <p.souter@kainos.com>2014-12-04 14:15:33 +0000
commit5e49c504580bf06353c841c51f1319a5bda893a8 (patch)
tree204d3a3d100c3872c23d106d7d9050a695cb7a00
parent7c570f75a5b88b1eb057bce3f7c4cad9cac83496 (diff)
(MODULES-444) Acceptance for multiple arrays
Acceptance test to take multiple arrays for concatenation
-rwxr-xr-xspec/acceptance/concat_spec.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/spec/acceptance/concat_spec.rb b/spec/acceptance/concat_spec.rb
index 0d5e831..caf2f7d 100755
--- a/spec/acceptance/concat_spec.rb
+++ b/spec/acceptance/concat_spec.rb
@@ -25,5 +25,16 @@ describe 'concat function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('oper
apply_manifest(pp, :catch_failures => true)
end
+ it 'should concat multiple arrays to one' do
+ pp = <<-EOS
+ $output = concat(['1','2','3'],['4','5','6'],['7','8','9'])
+ validate_array($output)
+ if size($output) != 6 {
+ fail("${output} should have 9 elements.")
+ }
+ EOS
+
+ apply_manifest(pp, :catch_failures => true)
+ end
end
end