Пример #1
0
def test_find_response():
    assert oneliner.find_response('foo') == 'bar'
Пример #2
0
def test_find_response_finds_none():
    assert oneliner.find_response('do not match') is None
Пример #3
0
def test_find_response_returns_random_item():
    assert oneliner.find_response('foo') in ('bar', 'baz')