1
0
mirror of https://github.com/django/django.git synced 2025-10-24 06:06:09 +00:00

Fixed #29301 -- Added custom help formatter to BaseCommand class

This partially reverts c3055242c8.
Thanks Adam Johnson and Carlton Gibson for the reviews.
This commit is contained in:
Claude Paroz
2018-05-21 11:32:51 +02:00
parent e9bd1a3e12
commit ce3351b950
4 changed files with 52 additions and 4 deletions

View File

@@ -205,6 +205,11 @@ class CommandTests(SimpleTestCase):
self.assertIn('need_me', out.getvalue())
self.assertIn('needme2', out.getvalue())
def test_command_add_arguments_after_common_arguments(self):
out = StringIO()
management.call_command('common_args', stdout=out)
self.assertIn('Detected that --version already exists', out.getvalue())
def test_subparser(self):
out = StringIO()
management.call_command('subparser', 'foo', 12, stdout=out)