Changeset 5687

Show
Ignore:
Timestamp:
11/16/08 17:04:11 (2 months ago)
Author:
faide
Message:

align comments with the test content

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""" 
    13import unittest 
    24import datetime 
     
    1315 
    1416    def test_method(self): 
    15         """The index method should return a string called 'now'""" 
     17        """The index method should return a datetime.datetime called 'now'""" 
    1618        response = self.app.get('/') 
    1719        assert isinstance(response.raw['now'], datetime.datetime)