(self)
| 2828 | is_(bool(expr), False) |
| 2829 | |
| 2830 | def test_column_identity_eq(self): |
| 2831 | c1 = column("c1") |
| 2832 | self._assert_true(c1 == c1) |
| 2833 | |
| 2834 | def test_column_identity_gt(self): |
| 2835 | c1 = column("c1") |
nothing calls this directly
no test coverage detected