Exemplo n.º 1
0
def test_parsers_equiv():
    assert list(str_parse('')) == list(list_parse([]))
    assert list(str_parse('ng | cat')) == list(list_parse(['ng | cat']))
Exemplo n.º 2
0
def test_list_parse(cmd, expected):
    assert list(list_parse(cmd)) == expected