From a3d7f58151e4a2996476d400bab0335b8d616bde Mon Sep 17 00:00:00 2001 From: Claude Paroz Date: Mon, 18 Aug 2014 19:53:53 +0200 Subject: [PATCH] Removed test, duplicate of admin_scripts.CommandTypes tests --- tests/user_commands/tests.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tests/user_commands/tests.py b/tests/user_commands/tests.py index 390e95060ea..58ad0cbe895 100644 --- a/tests/user_commands/tests.py +++ b/tests/user_commands/tests.py @@ -108,12 +108,6 @@ class CommandTests(SimpleTestCase): sys.stdout, sys.stderr = old_stdout, old_stderr 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): out = StringIO() management.call_command('hal', "--empty", stdout=out)