(self)
| 111 | self.assertGreaterEqual(self.conn.fileno(), 0) |
| 112 | |
| 113 | def test_context_manager(self): |
| 114 | with connection_factory() as conn: |
| 115 | self.assertFalse(conn.closed) |
| 116 | self.assertTrue(conn.closed) |
| 117 | |
| 118 | |
| 119 | class TestCollation(unittest.TestCase): |
nothing calls this directly
no test coverage detected