(db: Database, table1: Table, complex_column: Column)
| 61 | |
| 62 | @pytest.fixture |
| 63 | def complex_column_with_table(db: Database, table1: Table, complex_column: Column) -> Column: |
| 64 | table1.add_column(complex_column) |
| 65 | db.add(table1) |
| 66 | return complex_column |
| 67 | |
| 68 | @pytest.fixture |
| 69 | def string_column() -> Column: |
nothing calls this directly
no test coverage detected