コード例 #1
0
def test_random_choice():
    actual = misc._random_choice()
    assert next(actual)
    assert isinstance(next(actual), str) is True
コード例 #2
0
ファイル: test_misc.py プロジェクト: 5470x3/atango
def test_random_choice():
    actual = misc._random_choice()
    assert_true(next(actual))
    assert_true(isinstance(next(actual), str))