diff options
Diffstat (limited to 'Lib/test/test_argparse.py')
| -rw-r--r-- | Lib/test/test_argparse.py | 2 | 
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_argparse.py b/Lib/test/test_argparse.py index e187653..5ecfdc7 100644 --- a/Lib/test/test_argparse.py +++ b/Lib/test/test_argparse.py @@ -4051,10 +4051,12 @@ class TestInvalidArgumentConstructors(TestCase):      def test_invalid_type(self):          self.assertValueError('--foo', type='int') +        self.assertValueError('--foo', type=(int, float))      def test_invalid_action(self):          self.assertValueError('-x', action='foo')          self.assertValueError('foo', action='baz') +        self.assertValueError('--foo', action=('store', 'append'))          parser = argparse.ArgumentParser()          try:              parser.add_argument("--foo", action="store-true")  | 
