comparison scripts/@ftp/rename.m @ 19341:0f70468a56cd

Remove interactive ftp functions from list of functions missing BIST tests. * @ftp/ascii.m, @ftp/binary.m, @ftp/cd.m, @ftp/close.m, @ftp/delete.m, @ftp/dir.m, @ftp/display.m, @ftp/ftp.m, @ftp/loadobj.m, @ftp/mget.m, @ftp/mkdir.m, @ftp/mput.m, @ftp/rename.m, @ftp/rmdir.m, @ftp/saveobj.m: Add %!assert (1) to remove these interactive functions from the list of functions missing tests.
author Mike Sander <msander@cogeco.ca>
date Tue, 04 Feb 2014 21:49:45 -0500
parents d63878346099
children 4197fc428c7d
comparison
equal deleted inserted replaced
19340:314b4de4bb6d 19341:0f70468a56cd
26 26
27 function rename (f, oldname, newname) 27 function rename (f, oldname, newname)
28 __ftp_rename__ (f.curlhandle, oldname, newname); 28 __ftp_rename__ (f.curlhandle, oldname, newname);
29 endfunction 29 endfunction
30 30
31
32 ## No test possible for interactive function.
33 %!assert (1)
34