(self)
| 3002 | is_(bool(expr), False) |
| 3003 | |
| 3004 | def test_column_identity_eq(self): |
| 3005 | c1 = column("c1") |
| 3006 | self._assert_true(c1 == c1) |
| 3007 | |
| 3008 | def test_column_identity_gt(self): |
| 3009 | c1 = column("c1") |
nothing calls this directly
no test coverage detected