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.
This commit is contained in:
Timothy Sample 2019-08-20 11:44:05 -04:00
parent e029c4cbab
commit 223e8d2635
1 changed files with 0 additions and 29 deletions

View File

@ -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