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/touch.test | |
parent | 05b1d9e89a94ee5594168073b8dc363fada987f1 (diff) |
Add cat, false and true builtins
Diffstat (limited to 'tests/test/script/runner/touch.test')
-rw-r--r-- | tests/test/script/runner/touch.test | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/tests/test/script/runner/touch.test b/tests/test/script/runner/touch.test deleted file mode 100644 index e9d9f68..0000000 --- a/tests/test/script/runner/touch.test +++ /dev/null @@ -1,44 +0,0 @@ -# file : tests/test/script/runner/touch.test -# copyright : Copyright (c) 2014-2016 Code Synthesis Ltd -# license : MIT; see accompanying LICENSE file - -: file -: -touch a - -: file-create -: -: Test that file is created. If it didn't then 'rm' would fail. -: -touch a &!a; -rm a - -: file-update -: -: Test that existing file touch doesn't register cleanup. If it did then it -: would be left dangling after 'rm' call and so test would fail. -: -$* -f a; -touch a; -rm a - -: no-args -: -: Test passing no arguments. -: -touch 2>"touch: missing file" == 1 - -: empty-path -: -: Test touching an empty path. -: -touch '' 2>"touch: invalid path ''" == 1 - -: dir-update -: -: Test touching an existing directory. -: -a = [path] $~; -a += "a"; -mkdir a; -touch 2>"touch: '$a' exists and is not a file" a == 1 |