mirror of https://github.com/django/django.git
Removed test, duplicate of admin_scripts.CommandTypes tests
This commit is contained in:
parent
f76222e1d3
commit
a3d7f58151
|
@ -108,12 +108,6 @@ class CommandTests(SimpleTestCase):
|
||||||
sys.stdout, sys.stderr = old_stdout, old_stderr
|
sys.stdout, sys.stderr = old_stdout, old_stderr
|
||||||
self.assertEqual(output, "All right, let's dance Rock'n'Roll.\n")
|
self.assertEqual(output, "All right, let's dance Rock'n'Roll.\n")
|
||||||
|
|
||||||
def test_calling_an_help_command_should_exit_with_systemexit_exception(self):
|
|
||||||
out = StringIO()
|
|
||||||
with self.assertRaises(SystemExit):
|
|
||||||
management.call_command('hal', "--help", stdout=out)
|
|
||||||
self.assertIn("", out.getvalue())
|
|
||||||
|
|
||||||
def test_calling_a_command_with_only_empty_parameter_should_ends_gracefully(self):
|
def test_calling_a_command_with_only_empty_parameter_should_ends_gracefully(self):
|
||||||
out = StringIO()
|
out = StringIO()
|
||||||
management.call_command('hal', "--empty", stdout=out)
|
management.call_command('hal', "--empty", stdout=out)
|
||||||
|
|
Loading…
Reference in New Issue