view test/help/undoc_fcn.m @ 33232:c5dc54712378

update help function tests * test/help/cdefdir/cdef_help3.m, test/help/cdefdir/cdef_help4.m, test/help/undoc_fcn.m: New files. * test/help/cdefdir/cdef_help1.m: Rename from test/bug-65220/cdefdir/cdef_help1.m. * test/help/cdefdir/cdef_help2.m: Rename from test/bug-65220/cdefdir/cdef_help2.m. * test/help/help.tst: Rename from test/bug-65220/bug-65220.tst. New tests. Split tests so there is one assert for each test so that it is easier to find an individual failing test. * test/help/module.mk: Rename from test/bug-65220/module.mk. Update. * test/Makefile.am: Update.
author John W. Eaton <jwe@octave.org>
date Thu, 21 Mar 2024 11:21:04 -0400
parents
children
line wrap: on
line source

function [x, y, z] = undoc_fcn (a, b, ~, c = 3)
  x = a;
  y = b;
  z = c;
end