mirror of
				https://github.com/django/django.git
				synced 2025-10-31 01:25:32 +00:00 
			
		
		
		
	[2.1.x] Fixed #29301 -- Added custom help formatter to BaseCommand class
This partially revertsc3055242c8. Thanks Adam Johnson and Carlton Gibson for the reviews. Backport ofce3351b950from master.
This commit is contained in:
		| @@ -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) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user