(self)
| 273 | |
| 274 | class ImportObjectTest(unittest.TestCase): |
| 275 | def test_import_member(self): |
| 276 | self.assertIs(import_object("tornado.escape.utf8"), utf8) |
| 277 | |
| 278 | def test_import_member_unicode(self): |
| 279 | self.assertIs(import_object(u"tornado.escape.utf8"), utf8) |
nothing calls this directly
no test coverage detected