(self)
| 140 | return m, t1, c1 |
| 141 | |
| 142 | def test_comment(self): |
| 143 | m, t1, c1 = self._table_comment_fixture() |
| 144 | |
| 145 | generator = self._mock_create_fixture( |
| 146 | False, [t1], item_exists=lambda t: t not in ("t1",) |
| 147 | ) |
| 148 | |
| 149 | self._assert_create_comment([t1, t1, c1], generator, m) |
| 150 | |
| 151 | _true_seq = testing.combinations( |
| 152 | True, |
nothing calls this directly
no test coverage detected