[Python-checkins] cpython (2.7): #11906 Make test_argparse work interactively by removing extra space

terry.reedy python-checkins at python.org
Tue Jan 10 01:20:21 CET 2012


http://hg.python.org/cpython/rev/ec32e6ec16fc
changeset:   74318:ec32e6ec16fc
branch:      2.7
parent:      74311:4f14c249f3de
user:        Terry Jan Reedy <tjreedy at udel.edu>
date:        Mon Jan 09 18:20:09 2012 -0500
summary:
  #11906 Make test_argparse work interactively by removing extra space
in comparison string that argparse does not add when program name is blank.

files:
  Lib/test/test_argparse.py |  10 ++++++----
  1 files changed, 6 insertions(+), 4 deletions(-)


diff --git a/Lib/test/test_argparse.py b/Lib/test/test_argparse.py
--- a/Lib/test/test_argparse.py
+++ b/Lib/test/test_argparse.py
@@ -2135,8 +2135,9 @@
         parents = [self.abcd_parent, self.wxyz_parent]
         parser = ErrorRaisingArgumentParser(parents=parents)
         parser_help = parser.format_help()
+        progname = self.main_program
         self.assertEqual(parser_help, textwrap.dedent('''\
-            usage: {} [-h] [-b B] [--d D] [--w W] [-y Y] a z
+            usage: {}{}[-h] [-b B] [--d D] [--w W] [-y Y] a z
 
             positional arguments:
               a
@@ -2152,7 +2153,7 @@
 
             x:
               -y Y
-        '''.format(self.main_program)))
+        '''.format(progname, ' ' if progname else '' )))
 
     def test_groups_parents(self):
         parent = ErrorRaisingArgumentParser(add_help=False)
@@ -2168,8 +2169,9 @@
             ['-y', 'Y', '-z', 'Z'])
 
         parser_help = parser.format_help()
+        progname = self.main_program
         self.assertEqual(parser_help, textwrap.dedent('''\
-            usage: {} [-h] [-w W] [-x X] [-y Y | -z Z]
+            usage: {}{}[-h] [-w W] [-x X] [-y Y | -z Z]
 
             optional arguments:
               -h, --help  show this help message and exit
@@ -2181,7 +2183,7 @@
 
               -w W
               -x X
-        '''.format(self.main_program)))
+        '''.format(progname, ' ' if progname else '' )))
 
 # ==============================
 # Mutually exclusive group tests

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list