all TestCase sub-classes need the urls attribute to run

This commit is contained in:
anentropic 2012-01-25 16:04:31 +00:00
Родитель 34f3361e56
Коммит 8fb3e70785
1 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -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()