From 223e8d26350ab1ea4188069ee2d0966534d74362 Mon Sep 17 00:00:00 2001 From: Timothy Sample Date: Tue, 20 Aug 2019 11:44:05 -0400 Subject: [PATCH] Remove tests for the '/' variable operator. This is a Bash-specific feature, which means that it is out of scope for now. * tests/variable-patterns.org (slash, slash-string, slash-string-slash): Delete tests. --- tests/variable-patterns.org | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/tests/variable-patterns.org b/tests/variable-patterns.org index 11f8d38..198ed5a 100644 --- a/tests/variable-patterns.org +++ b/tests/variable-patterns.org @@ -72,32 +72,3 @@ #+begin_example --prefix=/usr/ #+end_example - -* slash -:script: -#+begin_src sh - var='xxfooxx' - echo "${var/foo}" -#+end_src -:stdout: -#+begin_example - xxxx -#+end_example - -* slash-string -:script: -#+begin_src sh - var='xxfooxx' - echo "${var/foo/bar}" -#+end_src -:stdout: -#+begin_example - xxbarxx -#+end_example - -* slash-string-slash -:script: -#+begin_src sh - var='xxfooxx' - echo "${var/foo/bar/}" -#+end_src