コード例 #1
0
ファイル: test_tools.py プロジェクト: gforsyth/xonsh
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
ファイル: test_tools.py プロジェクト: BlaXpirit/xonsh
def test_bool_to_str():
    assert '1' == bool_to_str(True)
    assert '' == bool_to_str(False)
コード例 #4
0
ファイル: test_tools.py プロジェクト: gitter-badger/xonsh
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