Exemplo n.º 1
0
def test_random_choice():
    actual = misc._random_choice()
    assert next(actual)
    assert isinstance(next(actual), str) is True
Exemplo n.º 2
0
def test_random_choice():
    actual = misc._random_choice()
    assert_true(next(actual))
    assert_true(isinstance(next(actual), str))