Changeset 8130
- Timestamp:
- 07/28/08 15:35:39 (5 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/tests/regressiontests/pagination_regress/tests.py
r8129 r8130 11 11 """ 12 12 Helper method that instantiates a Paginator object from the passed 13 params and then checks that it 's attributes match the passed output.13 params and then checks that its attributes match the passed output. 14 14 """ 15 15 count, num_pages, page_range = output … … 21 21 def check_attribute(self, name, paginator, expected, params): 22 22 """ 23 Helper method t o checka single attribute and gives a nice error23 Helper method that checks a single attribute and gives a nice error 24 24 message upon test failure. 25 25 """ … … 94 94 """ 95 95 Helper method that instantiates a Paginator object from the passed 96 params and then checks that the start and end indexes of forthe passed96 params and then checks that the start and end indexes of the passed 97 97 page_num match those given as a 2-tuple in indexes. 98 98 """
