# 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 --git a/scripts/help/__makeinfo__.m b/scripts/help/__makeinfo__.m --- a/scripts/help/__makeinfo__.m +++ b/scripts/help/__makeinfo__.m @@ -119,3 +119,6 @@ end_unwind_protect endfunction +## No test needed for internal helper function. +%!assert (1) + diff --git a/scripts/optimization/__all_opts__.m b/scripts/optimization/__all_opts__.m --- a/scripts/optimization/__all_opts__.m +++ b/scripts/optimization/__all_opts__.m @@ -67,3 +67,7 @@ endfunction + +## No test needed for internal helper function. +%!assert (1) + diff --git a/scripts/plot/__gnuplot_drawnow__.m b/scripts/plot/__gnuplot_drawnow__.m --- a/scripts/plot/__gnuplot_drawnow__.m +++ b/scripts/plot/__gnuplot_drawnow__.m @@ -386,3 +386,7 @@ endif endif endfunction + + +## No test needed for internal helper function. +%!assert (1) diff --git a/scripts/plot/__go_close_all__.m b/scripts/plot/__go_close_all__.m --- a/scripts/plot/__go_close_all__.m +++ b/scripts/plot/__go_close_all__.m @@ -26,3 +26,7 @@ function __go_close_all__ () close ("all", "hidden"); endfunction + + +## No test needed for internal helper function. +%!assert (1) diff --git a/scripts/plot/__plt_get_axis_arg__.m b/scripts/plot/__plt_get_axis_arg__.m --- a/scripts/plot/__plt_get_axis_arg__.m +++ b/scripts/plot/__plt_get_axis_arg__.m @@ -76,3 +76,7 @@ narg = length (varargin); endfunction + + +## No test needed for internal helper function. +%!assert (1)