예제 #1
0
파일: views.py 프로젝트: 0xa/PizzaVolus
 def test_auth_redirect(self):
     r = views.auth(DummyRequest(user=self.user))
     self.assertIsInstance(r, HTTPSeeOther)
예제 #2
0
파일: views.py 프로젝트: 0xa/PizzaVolus
 def test_auth_get(self):
     r = views.auth(DummyRequest())
     self.assertEqual(r, {})