I have this test case

    def test_loginin_student_control_panel(self):
        c = Client()
        c.login(username="tauri", password="gaul")
        response = c.get('/student/')
        self.assertEqual(response.status_code, 200)

the view associated with the test case is this

@login_required
def student(request):
    return render_to_response('student/controlpanel.html')

so my question is why the above test case redirects user to login
page? should not c.login suppose to take care authenticating user?

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to