(self)
| 19 | tg[22] |
| 20 | |
| 21 | def test_iter(self) -> None: |
| 22 | merchants = Table('merchants') |
| 23 | countries = Table('countries') |
| 24 | customers = Table('customers') |
| 25 | tg = TableGroup( |
| 26 | 'mytg', |
| 27 | [merchants, countries, customers], |
| 28 | comment='My table group\nmultiline comment' |
| 29 | ) |
| 30 | for i1, i2 in zip(tg, [merchants, countries, customers]): |
| 31 | self.assertIs(i1, i2) |
nothing calls this directly
no test coverage detected