(data, expected)
| 226 | |
| 227 | @pytest.mark.parametrize('data, expected', PARSING_TEST_CASES) |
| 228 | def test_parse(data, expected): |
| 229 | actual = shorthand.ShorthandParser().parse(data) |
| 230 | assert actual == expected |
| 231 | |
| 232 | |
| 233 | class TestShorthandParserParamFile: |