(self)
| 110 | return m, t1, t2, s1, s2 |
| 111 | |
| 112 | def _table_comment_fixture(self): |
| 113 | m = MetaData() |
| 114 | |
| 115 | c1 = Column("id", Integer, comment="c1") |
| 116 | |
| 117 | t1 = Table("t1", m, c1, comment="t1") |
| 118 | |
| 119 | return m, t1, c1 |
| 120 | |
| 121 | def test_comment(self): |
| 122 | m, t1, c1 = self._table_comment_fixture() |
no test coverage detected