Exemple #1
0
def test_answer_of_text():
    result = answer_of('text')
    assert result == answer_of_text
Exemple #2
0
def test_answer_of_unknown():
    result = answer_of('asdfasdfas')
    assert result == no_answer
Exemple #3
0
def test_answer_of_location():
    result = answer_of('location')
    assert result == answer_of_location
Exemple #4
0
def test_answer_of_none():
    result = answer_of(None)
    assert result == no_answer
Exemple #5
0
def test_answer_of_venue():
    result = answer_of('venue')
    assert result == answer_of_venue