Ejemplo n.º 1
0
def test_mysql_list_esc_string_numbers():
    assert sql_query_dict.mysql_list_esc(["1", "2"]) == "'1','2'"
Ejemplo n.º 2
0
def test_mysql_list_esc_string():
    assert sql_query_dict.mysql_list_esc(["a", "b"]) == "'a','b'"
Ejemplo n.º 3
0
def test_mysql_list_esc():
    assert sql_query_dict.mysql_list_esc([1, 2]) == "1,2"