summaryrefslogtreecommitdiff
path: root/tests/generic_views/test_base.py
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2016-06-28 11:21:26 -0400
committerTim Graham <timograham@gmail.com>2016-07-01 09:58:56 -0400
commit567cfc1601a5f475eea12bc5de53b849fa5dadea (patch)
treec471ba1af748008e4fbe9faee8cf51d4dffcd263 /tests/generic_views/test_base.py
parent9c48e17480432b8723fcdcc262d8d62866e93a4f (diff)
[1.10.x] Replaced use of TestCase.fail() with assertRaises().
Also removed try/except/fail antipattern that hides exceptions. Backport of c9ae09addffb839403312131d4251e9d8b454508 from master
Diffstat (limited to 'tests/generic_views/test_base.py')
-rw-r--r--tests/generic_views/test_base.py10
1 files changed, 2 insertions, 8 deletions
diff --git a/tests/generic_views/test_base.py b/tests/generic_views/test_base.py
index a5e528585c..db4ef604fa 100644
--- a/tests/generic_views/test_base.py
+++ b/tests/generic_views/test_base.py
@@ -78,21 +78,15 @@ class ViewTest(unittest.TestCase):
"""
Test that a view can't be accidentally instantiated before deployment
"""
- try:
+ with self.assertRaises(AttributeError):
SimpleView(key='value').as_view()
- self.fail('Should not be able to instantiate a view')
- except AttributeError:
- pass
def test_no_init_args(self):
"""
Test that a view can't be accidentally instantiated before deployment
"""
- try:
+ with self.assertRaises(TypeError):
SimpleView.as_view('value')
- self.fail('Should not be able to use non-keyword arguments instantiating a view')
- except TypeError:
- pass
def test_pathological_http_method(self):
"""