(self)
| 119 | return m, t1, c1 |
| 120 | |
| 121 | def test_comment(self): |
| 122 | m, t1, c1 = self._table_comment_fixture() |
| 123 | |
| 124 | generator = self._mock_create_fixture( |
| 125 | False, [t1], item_exists=lambda t: t not in ("t1",) |
| 126 | ) |
| 127 | |
| 128 | self._assert_create_comment([t1, t1, c1], generator, m) |
| 129 | |
| 130 | def test_create_seq_checkfirst(self): |
| 131 | m, t1, t2, s1, s2 = self._table_seq_fixture() |
nothing calls this directly
no test coverage detected