diff options
author | Christian A. Weber | 2023-06-22 15:43:01 +0200 |
---|---|---|
committer | Christian A. Weber | 2023-06-22 15:43:01 +0200 |
commit | 22c5038f6c2829917e9d8598cb8f6f418c2b8304 (patch) | |
tree | 5dd9cb1fb46128cfa0e61dcd0750476b9328a6ca /test/exec.t | |
parent | 2479b0ce69b1ebdc5c6ddd25dae8181cec2dccfb (diff) | |
download | itools-22c5038f6c2829917e9d8598cb8f6f418c2b8304.tar.gz itools-22c5038f6c2829917e9d8598cb8f6f418c2b8304.tar.bz2 itools-22c5038f6c2829917e9d8598cb8f6f418c2b8304.zip |
remove test for it::exec() with unquoted arg
Diffstat (limited to 'test/exec.t')
-rwxr-xr-x | test/exec.t | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/exec.t b/test/exec.t index 04850fc..5f3ebb5 100755 --- a/test/exec.t +++ b/test/exec.t @@ -71,7 +71,6 @@ foreach (["", "C", "de_CH", "de_CH.utf8"] as $locale) $arg = "preĆ¼post"; if (it::match('utf8', $locale)) $arg = it::any2utf8($arg); - is(it::exec("echo " . $arg), $arg . "\n", "exec with umlaut (locale '$locale')"); is(it::exec("echo {arg}", ['arg' => $arg]), $arg . "\n", "exec with argument and umlaut (locale '$locale')"); } |