(self)
| 1659 | class TestConnection(tb.ConnectedTestCase): |
| 1660 | |
| 1661 | async def test_connection_isinstance(self): |
| 1662 | self.assertTrue(isinstance(self.con, pg_connection.Connection)) |
| 1663 | self.assertTrue(isinstance(self.con, object)) |
| 1664 | self.assertFalse(isinstance(self.con, list)) |
| 1665 | |
| 1666 | async def test_connection_use_after_close(self): |
| 1667 | def check(): |
nothing calls this directly
no outgoing calls
no test coverage detected