aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkate.ward <kate.ward@forestent.com>2008-11-17 17:39:14 +0000
committerkate.ward <kate.ward@forestent.com>2008-11-17 17:39:14 +0000
commit90681c3be7a42bd0b24936b85edd3c31afa7896e (patch)
tree403c78bc5c3bd1540889b6c62727cd2888ab8297
parent6409961395c61690bbf8ebd2bf47448086a15039 (diff)
downloadshflags-90681c3be7a42bd0b24936b85edd3c31afa7896e.tar.gz
shortened long default value in help tests
-rwxr-xr-xsource/1.0/src/shflags_test_public.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/1.0/src/shflags_test_public.sh b/source/1.0/src/shflags_test_public.sh
index e985155..65bd4ab 100755
--- a/source/1.0/src/shflags_test_public.sh
+++ b/source/1.0/src/shflags_test_public.sh
@@ -71,7 +71,7 @@ testStandardHelpOutput()
DEFINE_string long_desc 'blah' \
'testing of a long description to force wrap of default value' D
DEFINE_string long_default \
- 'this_is_a_really_long_default_value_to_force_alternate_indentation' \
+ 'this_is_a_long_default_value_to_force_alternate_indentation' \
'testing of long default value' F
help='USAGE: standard [flags] args'
@@ -84,7 +84,7 @@ flags:
-D testing of a long description to force wrap of default value
(default: 'blah')
-F testing of long default value
- (default: 'this_is_a_really_long_default_value_to_force_alternate_indentation')
+ (default: 'this_is_a_long_default_value_to_force_alternate_indentation')
-h show this help (default: false)
EOF
( FLAGS_HELP=${help}; FLAGS -h >"${stdoutF}" 2>"${stderrF}" )
@@ -104,7 +104,7 @@ testEnhancedHelpOutput()
DEFINE_string long_desc 'blah' \
'testing of a long description to force wrap of default value' l
DEFINE_string long_default \
- 'this_is_a_really_long_default_value_to_force_alternate_indentation' \
+ 'this_is_a_long_default_value_to_force_alternate_indentation' \
'testing of long default value' F
help='USAGE: enhanced [flags] args'
@@ -117,7 +117,7 @@ flags:
-D,--long_desc: testing of a long description to force wrap of default value
(default: 'blah')
-F,--long_default: testing of long default value
- (default: 'this_is_a_really_long_default_value_to_force_alternate_indentation')
+ (default: 'this_is_a_long_default_value_to_force_alternate_indentation')
-h,--[no]help: show this help (default: false)
EOF
( FLAGS_HELP=${help}; FLAGS -h >"${stdoutF}" 2>"${stderrF}" )