(self)
| 131 | return m, t1, t2, s1, s2 |
| 132 | |
| 133 | def _table_comment_fixture(self): |
| 134 | m = MetaData() |
| 135 | |
| 136 | c1 = Column("id", Integer, comment="c1") |
| 137 | |
| 138 | t1 = Table("t1", m, c1, comment="t1") |
| 139 | |
| 140 | return m, t1, c1 |
| 141 | |
| 142 | def test_comment(self): |
| 143 | m, t1, c1 = self._table_comment_fixture() |
no test coverage detected