On 5/26/06, Liza <[EMAIL PROTECTED]> wrote: ====================================================================== > FAIL: Running simple page test > ---------------------------------------------------------------------- > Traceback (most recent call last): > File "/my/project/test/test_controllers.py", line 18, in test_simple > assert "302" in response.status > AssertionError: > > > ---------------------------------------------------------------------- > Ran 1 test in 7.047s > > FAILED (failures=1)
Add a "print response.status" before that assert. My guess is that it's probably 500. You can print cherrypy.response.body[0] and see what the error is. Kevin --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/turbogears -~----------~----~----~----~------~----~------~--~---

