예제 #1
0
def test_bool_to_str():
    yield assert_equal, '1', bool_to_str(True)
    yield assert_equal, '', bool_to_str(False)
예제 #2
0
def test_bool_to_str(inp, exp):
    assert bool_to_str(inp) == exp
예제 #3
0
def test_bool_to_str():
    assert '1' == bool_to_str(True)
    assert '' == bool_to_str(False)
예제 #4
0
def test_bool_to_str():
    yield assert_equal, '1', bool_to_str(True)
    yield assert_equal, '', bool_to_str(False)
예제 #5
0
파일: test_tools.py 프로젝트: mitnk/xonsh
def test_bool_to_str(inp, exp):
    assert bool_to_str(inp) == exp