(simple_column_with_table: Column, enum1: Enum)
| 125 | |
| 126 | @staticmethod |
| 127 | def test_enum(simple_column_with_table: Column, enum1: Enum) -> None: |
| 128 | simple_column_with_table.type = enum1 |
| 129 | expected = '"id" "product status"' |
| 130 | assert render_column(simple_column_with_table) == expected |
| 131 | |
| 132 | @staticmethod |
| 133 | def test_complex(complex_column_with_table: Column) -> None: |
nothing calls this directly
no test coverage detected