Пример #1
0
def test_asterisk():
    input = 'Something text with * inside'
    out = base_expansion(input)
    assert out == 'Something text with \\* inside'
Пример #2
0
def test_question_mark():
    input = 'Something text with ? inside'
    out = base_expansion(input)
    assert out == 'Something text with \\? inside'
Пример #3
0
def test_square_close():
    input = 'some ] thing'
    out = base_expansion(input)
    assert out == 'some \\] thing'
Пример #4
0
def test_square_both():
    input = 'some [thing]'
    out = base_expansion(input)
    assert out == 'some \\[thing\\]'
Пример #5
0
def test_round_both():
    input = 'some (thing)'
    out = base_expansion(input)
    assert out == 'some \\(thing\\)'
Пример #6
0
def test_square_open():
    input = 'some [ thing'
    out = base_expansion(input)
    assert out == 'some \\[ thing'
Пример #7
0
def test_round_close():
    input = 'some ) thing'
    out = base_expansion(input)
    assert out == 'some \\) thing'
Пример #8
0
def test_round_open():
    input = 'some ( thing'
    out = base_expansion(input)
    assert out == 'some \\( thing'
Пример #9
0
def test_curly_both():
    input = 'some {thing}'
    out = base_expansion(input)
    assert out == 'some \\{thing\\}'
Пример #10
0
def test_curly_close():
    input = 'some } thing'
    out = base_expansion(input)
    assert out == 'some \\} thing'
Пример #11
0
def test_curly_open():
    input = 'some { thing'
    out = base_expansion(input)
    assert out == 'some \\{ thing'