(self)
| 404 | |
| 405 | class TestCurtsiesPagerText(TestCase): |
| 406 | def setUp(self): |
| 407 | self.repl = create_repl() |
| 408 | self.repl.pager = self.assert_pager_gets_unicode |
| 409 | |
| 410 | def assert_pager_gets_unicode(self, text): |
| 411 | self.assertIsInstance(text, str) |
nothing calls this directly
no test coverage detected