about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--Test/02alias.ztst23
1 files changed, 0 insertions, 23 deletions
diff --git a/Test/02alias.ztst b/Test/02alias.ztst
deleted file mode 100644
index 03c0a6cc1..000000000
--- a/Test/02alias.ztst
+++ /dev/null
@@ -1,23 +0,0 @@
-%prep
-  alias foo=echo
-
-  alias -g bar=echo
-
-  alias '\bar=echo'
-
-%test
-  foo foo
-0:Basic aliasing
->foo
-
-  bar bar
-0:Global aliasing
->echo
-
-  \foo foo
-1:Not aliasing
-?ZTST_execchunk:2: command not found: foo
-
-  \bar \bar
-0:Aliasing with a backslash
->bar