summaryrefslogtreecommitdiff
path: root/tests/user_commands/tests.py
diff options
context:
space:
mode:
authorHasan <hasan.r67@gmail.com>2016-01-17 14:56:39 +0330
committerTim Graham <timograham@gmail.com>2016-01-29 12:32:18 -0500
commit3d0dcd7f5af378d3ab6adb303b913e6c7b2e0ee5 (patch)
tree0d1074cc65a72096e44a4165611fddfc5b7ef7fb /tests/user_commands/tests.py
parent575706331bec4bf58ce36a9540c4c61fca49025b (diff)
downloaddjango-3d0dcd7f5af378d3ab6adb303b913e6c7b2e0ee5.tar.gz
Refs #26022 -- Used context manager version of assertRaises in tests.
Diffstat (limited to 'tests/user_commands/tests.py')
-rw-r--r--tests/user_commands/tests.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/user_commands/tests.py b/tests/user_commands/tests.py
index 048ac4d963..2c19339ddc 100644
--- a/tests/user_commands/tests.py
+++ b/tests/user_commands/tests.py
@@ -44,7 +44,8 @@ class CommandTests(SimpleTestCase):
def test_explode(self):
""" Test that an unknown command raises CommandError """
- self.assertRaises(CommandError, management.call_command, ('explode',))
+ with self.assertRaises(CommandError):
+ management.call_command(('explode',))
def test_system_exit(self):
""" Exception raised in a command should raise CommandError with
@@ -181,4 +182,5 @@ class CommandRunTests(AdminScriptTestCase):
class UtilsTests(SimpleTestCase):
def test_no_existent_external_program(self):
- self.assertRaises(CommandError, popen_wrapper, ['a_42_command_that_doesnt_exist_42'])
+ with self.assertRaises(CommandError):
+ popen_wrapper(['a_42_command_that_doesnt_exist_42'])