コード例 #1
0
def test_if_else_stmt():
    pos_test(test2_py, test2_c)
コード例 #2
0
def test_simple_if_stmt():
    pos_test(test1_py, test1_c)
コード例 #3
0
def test_if_elif_elif_else_stmt():
    pos_test(test5_py, test5_c)
コード例 #4
0
ファイル: test_booleans.py プロジェクト: AlonDouek/pyduino
def test_bool_lst_assignment():
    pos_test("a = [True, False]", "bool a[2];\n\na = [true, false];")
コード例 #5
0
def test_loop_string_list():
    pos_test(test2_py, test2_c)
コード例 #6
0
def test_loop_literal_list():
    pos_test(test1_py, test1_c)