()
| 1422 | |
| 1423 | def test_no_table(self): |
| 1424 | def go(): |
| 1425 | class User(Base): |
| 1426 | id = Column("id", Integer, primary_key=True) |
| 1427 | |
| 1428 | assert_raises_message( |
| 1429 | sa.exc.InvalidRequestError, "does not have a __table__", go |
nothing calls this directly
no test coverage detected