--- a/tests/test-help.t Thu Feb 23 21:27:25 2017 +0900
+++ b/tests/test-help.t Tue Nov 01 14:50:45 2016 +0000
@@ -683,6 +683,7 @@
> ('', 'newline', '', 'line1\nline2')],
> 'hg nohelp',
> norepo=True)
+ > @command('debugoptADV', [('', 'aopt', None, 'option is (ADVANCED)')])
> @command('debugoptDEP', [('', 'dopt', None, 'option is (DEPRECATED)')])
> @command('debugoptEXP', [('', 'eopt', None, 'option is (EXPERIMENTAL)')])
> def nohelp(ui, *args, **kwargs):
@@ -895,6 +896,7 @@
complete "names" - tags, open branch names, bookmark names
debugobsolete
create arbitrary obsolete marker
+ debugoptADV (no help text available)
debugoptDEP (no help text available)
debugoptEXP (no help text available)
debugpathcomplete
@@ -1108,7 +1110,15 @@
(use 'hg help -v helpext' to show built-in aliases and global options)
-test deprecated and experimental options are hidden in command help
+test advanced, deprecated and experimental options are hidden in command help
+ $ hg help debugoptADV
+ hg debugoptADV
+
+ (no help text available)
+
+ options:
+
+ (some details hidden, use --verbose to show complete help)
$ hg help debugoptDEP
hg debugoptDEP
@@ -1127,7 +1137,9 @@
(some details hidden, use --verbose to show complete help)
-test deprecated and experimental options is shown with -v
+test advanced, deprecated and experimental options are shown with -v
+ $ hg help -v debugoptADV | grep aopt
+ --aopt option is (ADVANCED)
$ hg help -v debugoptDEP | grep dopt
--dopt option is (DEPRECATED)
$ hg help -v debugoptEXP | grep eopt