Exemplo n.º 1
0
def test_rfc2549():
    correct = top_word_solution(nicolas)
    assert top_word(rfc2549) == correct
Exemplo n.º 2
0
def test_nicolas():
    correct = top_word_solution(nicolas)
    assert top_word(nicolas) == correct
Exemplo n.º 3
0
def test_single():
    assert top_word("word") == "word"
Exemplo n.º 4
0
def test_double():
    assert top_word("foo bar foo") == "foo"
Exemplo n.º 5
0
def test_empty():
    assert top_word("") is None