()
| 191 | |
| 192 | |
| 193 | def test_parse_options(): |
| 194 | assert parse_options(thing=42) == {"thing": 42} |
| 195 | assert parse_options(thing=None) == {} |
| 196 | assert parse_options(long_thing=42) == {"longThing": 42} |
| 197 | assert parse_options(thing=42, lst=[1, 2]) == {"thing": 42, "lst": [1, 2]} |
| 198 | |
| 199 | |
| 200 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected