summaryrefslogtreecommitdiffstats
path: root/Test/C04funcdef.ztst
diff options
context:
space:
mode:
authorPeter Stephenson <p.w.stephenson@ntlworld.com>2019-04-10 20:54:52 +0100
committerPeter Stephenson <p.w.stephenson@ntlworld.com>2019-08-03 19:53:51 +0100
commit4fae52572699770fdf4af6bc94d8b219cb401ad2 (patch)
tree30354f47cdda0b36eda1c6149549cb79064d16a6 /Test/C04funcdef.ztst
parent44635: Don't apply STAT_NOPRINT to backgrounded jobs (diff)
downloadzsh-4fae52572699770fdf4af6bc94d8b219cb401ad2.tar
zsh-4fae52572699770fdf4af6bc94d8b219cb401ad2.tar.gz
zsh-4fae52572699770fdf4af6bc94d8b219cb401ad2.tar.bz2
zsh-4fae52572699770fdf4af6bc94d8b219cb401ad2.tar.lz
zsh-4fae52572699770fdf4af6bc94d8b219cb401ad2.tar.xz
zsh-4fae52572699770fdf4af6bc94d8b219cb401ad2.tar.zst
zsh-4fae52572699770fdf4af6bc94d8b219cb401ad2.zip
Copy functions using functions -c old new.
Documentation and test.
Diffstat (limited to 'Test/C04funcdef.ztst')
-rw-r--r--Test/C04funcdef.ztst69
1 files changed, 68 insertions, 1 deletions
diff --git a/Test/C04funcdef.ztst b/Test/C04funcdef.ztst
index 3aaf7fb4a..407fc471f 100644
--- a/Test/C04funcdef.ztst
+++ b/Test/C04funcdef.ztst
@@ -503,7 +503,7 @@
not_trashed() { print This function was not trashed; }
autoload -Uz /foo/bar/not_trashed
not_trashed
-0:autoload with absolute path doesn't trash loaded function
+0:autoload with absolute path does not trash loaded function
>This function was not trashed
# keep spec from getting loaded in parent shell for simplicity
@@ -542,6 +542,73 @@
0:autoload containing dash
>this should run automatically
+ tbc() {
+ print This function is called $0.
+ }
+ tbc
+ functions -c tbc newcopy
+ newcopy
+ unfunction tbc
+ newcopy
+0:functions -c
+>This function is called tbc.
+>This function is called newcopy.
+>This function is called newcopy.
+
+ (
+ fpath=(.)
+ print >tbc_auto 'print This autoloaded function is called $0.'
+ autoload -Uz tbc_auto
+ functions -c tbc_auto newcopy_auto
+ newcopy_auto
+ tbc_auto
+ )
+0:functions -c with autoload
+>This autoloaded function is called newcopy_auto.
+>This autoloaded function is called tbc_auto.
+
+ (
+ fpath=(.)
+ print >tbc_redef "print This is the core of the old function."
+ autoload -Uz tbc_redef
+ functions -c tbc_redef tbc_original
+ tbc_redef() {
+ print About to call the original.
+ tbc_original
+ print Stopped calling the original because once is enough.
+ }
+ tbc_redef
+ )
+0:function -c with redefinition
+>About to call the original.
+>This is the core of the old function.
+>Stopped calling the original because once is enough.
+
+ (
+ fpath=(.)
+ print >line_info '\nprint -P "%1x:%I is where we are."'
+ autoload -Uz line_info
+ functions -c line_info preserve_file
+ preserve_file
+ )
+0:functions -c preserves file information
+>line_info:2 is where we are.
+
+ (
+ fpath=(.)
+ print >func_info '\nprint -P "%N:%i is where we are."'
+ autoload -Uz func_info
+ functions -c func_info change_output
+ change_output
+ )
+0:functions -c updates non-file function information
+>change_output:2 is where we are.
+
+ autoload -Uz cant_autoload_for_copying
+ functions -c cant_autoload_for_copying not_copied
+1:functions -c gracefully rejects failed autoload
+?(eval):2: cant_autoload_for_copying: function definition file not found
+
%clean
rm -f file.in file.out