コード例 #1
0
def test_rfc2549():
    correct = top_word_solution(nicolas)
    assert top_word(rfc2549) == correct
コード例 #2
0
def test_nicolas():
    correct = top_word_solution(nicolas)
    assert top_word(nicolas) == correct
コード例 #3
0
def test_single():
    assert top_word("word") == "word"
コード例 #4
0
def test_double():
    assert top_word("foo bar foo") == "foo"
コード例 #5
0
def test_empty():
    assert top_word("") is None