Changeset 5687
- Timestamp:
- 11/16/08 17:04:11 (2 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.1/turbogears/qstemplates/quickstart/+package+/tests/test_controllers.py_tmpl
r5686 r5687 1 """test module for your application's pages 2 """ 1 3 import unittest 2 4 import datetime … … 13 15 14 16 def test_method(self): 15 """The index method should return a stringcalled 'now'"""17 """The index method should return a datetime.datetime called 'now'""" 16 18 response = self.app.get('/') 17 19 assert isinstance(response.raw['now'], datetime.datetime)