(self, test_case, expected)
| 210 | argnames="test_case, expected", |
| 211 | ) |
| 212 | def test_when_dicts(self, test_case, expected): |
| 213 | t = table("test", column("col1")) |
| 214 | |
| 215 | when_dict, value, else_ = testing.resolve_lambda(test_case, t=t) |
| 216 | |
| 217 | self.assert_compile( |
| 218 | case(when_dict, value=value, else_=else_), expected |
| 219 | ) |
| 220 | |
| 221 | def test_text_doesnt_explode(self, connection): |
| 222 | info_table = self.tables.info_table |
nothing calls this directly
no test coverage detected