def test_parse_identifier(tokens, expected_value, expected_count): result, count = _parse_identifier(tokens) assert count == expected_count assert result == expected_value
def test_parse_identifier_with_exception(): with pytest.raises(InvalidIdentifier): _parse_identifier([])