diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2016-11-10 00:26:54 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2016-11-15 16:46:10 +0300 |
commit | a7efabf301f23364ac2335c80c5e1e712bc43204 (patch) | |
tree | dded192f09627702bc8e0566c5c6032825d6920c /tests/test/script/runner/mkdir.test | |
parent | 05b1d9e89a94ee5594168073b8dc363fada987f1 (diff) |
Add cat, false and true builtins
Diffstat (limited to 'tests/test/script/runner/mkdir.test')
-rw-r--r-- | tests/test/script/runner/mkdir.test | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/tests/test/script/runner/mkdir.test b/tests/test/script/runner/mkdir.test deleted file mode 100644 index 6b7b5c9..0000000 --- a/tests/test/script/runner/mkdir.test +++ /dev/null @@ -1,50 +0,0 @@ -# file : tests/test/script/runner/mkdir.test -# copyright : Copyright (c) 2014-2016 Code Synthesis Ltd -# license : MIT; see accompanying LICENSE file - -: dirs -: -mkdir a b; -touch a/a b/b - -: parent -: -mkdir -p a/b; -touch a/a a/b/b - -: exists -: -mkdir -p a a a/b a/b - -: double-dash -: -: Make sure '-p' directory is created. -: -mkdir -p -- -p; -touch -p/a - -: no-args -: -: Test passing no arguments. -: -mkdir 2>"mkdir: missing directory" == 1 - -: empty-path -: -: Test creation of empty directory path. -: -mkdir '' 2>"mkdir: invalid path ''" == 1 - -: already-exists -: -: Test creation of an existing directory. Note that error message is -: platform-dependent so is not checked. -: -mkdir a 2>- a == 1 # @@ REGEX - -: not-exists -: -: Test creation of a directory with non-existent parent. Note that error -: message is platform-dependent so is not checked. -: -mkdir a/b 2>- == 1 # @@ REGEX |