From 932339a5eb17bd435c5f7802201d71d6a2193079 Mon Sep 17 00:00:00 2001 From: Jan Nieuwenhuizen Date: Sat, 1 Dec 2018 08:19:28 +0100 Subject: [PATCH] test: 30-substitution-word. --- check.sh | 1 + test/30-substitution-word.sh | 2 ++ test/30-substitution-word.stdout | 1 + 3 files changed, 4 insertions(+) create mode 100644 test/30-substitution-word.sh create mode 100644 test/30-substitution-word.stdout diff --git a/check.sh b/check.sh index 50b78a2..b843b67 100755 --- a/check.sh +++ b/check.sh @@ -73,6 +73,7 @@ tests=' 20-exec 30-substitution +30-substitution-word 30-substitution-backtick 30-substitution-assignment 30-for-substitution diff --git a/test/30-substitution-word.sh b/test/30-substitution-word.sh new file mode 100644 index 0000000..69467ab --- /dev/null +++ b/test/30-substitution-word.sh @@ -0,0 +1,2 @@ +echo foo $(echo bar)/baz + diff --git a/test/30-substitution-word.stdout b/test/30-substitution-word.stdout new file mode 100644 index 0000000..1a1c7ad --- /dev/null +++ b/test/30-substitution-word.stdout @@ -0,0 +1 @@ +foo bar/baz