# HG changeset patch # User Rik # Date 1315063978 25200 # Node ID a04e32272ecbd0aed8b46a89ff4e21e4d9e8e5dd # Parent 098c8e6962364d68222b215d76820472c8cafdf1 codesprint: Turn off test warning for various internal helper functions * __makeinfo__.m, __all_opts__.m, __gnuplot_drawnow__.m, __go_close_all__.m, __plt_get_axis_arg__.m: Use %!assert(1) to disable test warning. diff -r 098c8e696236 -r a04e32272ecb scripts/help/__makeinfo__.m --- a/scripts/help/__makeinfo__.m Sat Sep 03 08:25:52 2011 -0700 +++ b/scripts/help/__makeinfo__.m Sat Sep 03 08:32:58 2011 -0700 @@ -119,3 +119,6 @@ end_unwind_protect endfunction +## No test needed for internal helper function. +%!assert (1) + diff -r 098c8e696236 -r a04e32272ecb scripts/optimization/__all_opts__.m --- a/scripts/optimization/__all_opts__.m Sat Sep 03 08:25:52 2011 -0700 +++ b/scripts/optimization/__all_opts__.m Sat Sep 03 08:32:58 2011 -0700 @@ -67,3 +67,7 @@ endfunction + +## No test needed for internal helper function. +%!assert (1) + diff -r 098c8e696236 -r a04e32272ecb scripts/plot/__gnuplot_drawnow__.m --- a/scripts/plot/__gnuplot_drawnow__.m Sat Sep 03 08:25:52 2011 -0700 +++ b/scripts/plot/__gnuplot_drawnow__.m Sat Sep 03 08:32:58 2011 -0700 @@ -386,3 +386,7 @@ endif endif endfunction + + +## No test needed for internal helper function. +%!assert (1) diff -r 098c8e696236 -r a04e32272ecb scripts/plot/__go_close_all__.m --- a/scripts/plot/__go_close_all__.m Sat Sep 03 08:25:52 2011 -0700 +++ b/scripts/plot/__go_close_all__.m Sat Sep 03 08:32:58 2011 -0700 @@ -26,3 +26,7 @@ function __go_close_all__ () close ("all", "hidden"); endfunction + + +## No test needed for internal helper function. +%!assert (1) diff -r 098c8e696236 -r a04e32272ecb scripts/plot/__plt_get_axis_arg__.m --- a/scripts/plot/__plt_get_axis_arg__.m Sat Sep 03 08:25:52 2011 -0700 +++ b/scripts/plot/__plt_get_axis_arg__.m Sat Sep 03 08:32:58 2011 -0700 @@ -76,3 +76,7 @@ narg = length (varargin); endfunction + + +## No test needed for internal helper function. +%!assert (1)