diff options
Diffstat (limited to 't/chainlint/bash-array.expect')
-rw-r--r-- | t/chainlint/bash-array.expect | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/t/chainlint/bash-array.expect b/t/chainlint/bash-array.expect new file mode 100644 index 0000000000..435dc8bdc8 --- /dev/null +++ b/t/chainlint/bash-array.expect @@ -0,0 +1,10 @@ +2 ( +3 foo && +4 bar=(gumbo stumbo wumbo) && +5 baz +6 ) && +7 ( +8 foo && +9 bar=${#bar[@]} && +10 baz +11 ) |