all TestCase sub-classes need the urls attribute to run
This commit is contained in:
Родитель
34f3361e56
Коммит
8fb3e70785
|
@ -68,7 +68,8 @@ class TestCsrfToken(django.test.TestCase):
|
|||
|
||||
|
||||
class TestCsrfMiddleware(django.test.TestCase):
|
||||
|
||||
urls = 'session_csrf.tests'
|
||||
|
||||
def setUp(self):
|
||||
self.token = 'a' * 32
|
||||
self.rf = django.test.RequestFactory()
|
||||
|
@ -147,7 +148,8 @@ class TestCsrfMiddleware(django.test.TestCase):
|
|||
|
||||
|
||||
class TestAnonymousCsrf(django.test.TestCase):
|
||||
|
||||
urls = 'session_csrf.tests'
|
||||
|
||||
def setUp(self):
|
||||
self.token = 'a' * 32
|
||||
self.rf = django.test.RequestFactory()
|
||||
|
|
Загрузка…
Ссылка в новой задаче