示例#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