gasolin wrote: >> File "/Users/chris/src/Python/TurboGears/temp3/temp3/temp3/tests/ >> test_controllers.py", line 26, in test_indextitle >> assert "<TITLE>Welcome to TurboGears</TITLE>" in >> cherrypy.response.body[0] >> AssertionError > > This is because since kid 0.9.4 they change the default generated tags > to lower case. > > try assert "<title>Welcome to TurboGears</title>" instead.
As Chris M. already wrote, this does not help here since it is indeed a problem with SQLAlchemy. The test fails because with SQLAlchemy, the necessary visit/identity tables are not created automatically, as it is the case with SQLObject. I have submitted patches #1289 and #1290 for fixing both of these problems. -- Chris Z. --~--~---------~--~----~------------~-------~--~----~ 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?hl=en -~----------~----~----~----~------~----~------~--~---

