Ejemplo n.º 1
0
def test_substrings_empty():
    assert list(substrings('')) == []
Ejemplo n.º 2
0
def test_substrings_single():
    assert list(substrings('a')) == ['a']
Ejemplo n.º 3
0
def test_substrings():
    assert list(substrings('abc')) == [
        'a', 'ab', 'abc',
        'b', 'bc',
        'c',
    ]