(self)
| 216 | def test_paginate_misc_classes(self): |
| 217 | class CountContainer: |
| 218 | def count(self): |
| 219 | return 42 |
| 220 | |
| 221 | # Paginator can be passed other objects with a count() method. |
| 222 | paginator = Paginator(CountContainer(), 10) |
no outgoing calls
no test coverage detected