Exemplo n.º 1
0
def test_to_lines():
    assert Parser.from_string("123\n456").to_lines() == ["123", "456"]
Exemplo n.º 2
0
def test_to_sections():
    assert Parser.from_string("123\n\n456").to_sections() == ["123", "456"]
Exemplo n.º 3
0
def test_to_string():
    assert Parser.from_string("123\n456").to_string() == "123\n456"