diff options
Diffstat (limited to '')
-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 0000000..4c34eae --- /dev/null +++ b/t/chainlint/bash-array.expect @@ -0,0 +1,10 @@ +( + foo && + bar=(gumbo stumbo wumbo) && + baz +) && +( + foo && + bar=${#bar[@]} && + baz +) |