(string_column_with_table: Column)
| 140 | |
| 141 | @staticmethod |
| 142 | def test_string(string_column_with_table: Column) -> None: |
| 143 | expected = ( |
| 144 | "// This is a defaulted string column\n" |
| 145 | '"name" varchar(255) [default: \'value\\\'s\', unique, not null, note: \'This is ' |
| 146 | "a note for the column']" |
| 147 | ) |
| 148 | assert render_column(string_column_with_table) == expected |
| 149 | |
| 150 | @staticmethod |
| 151 | def test_boolean(boolean_column_with_table: Column) -> None: |
nothing calls this directly
no test coverage detected