Exemple #1
0
def test_escape_None():
    types.escape(None) == "NULL"
Exemple #2
0
def test_escape_list():
    assert types.escape(("a", "b")) == "('a', 'b')"
Exemple #3
0
def test_escape_list_with_apostrophe():
    assert types.escape(("a'", "'b")) == "('a''', '''b')"
Exemple #4
0
def test_escape_string_with_apostrophe():
    text = "'Hello' \"World\""
    assert types.escape(text) == "'''Hello'' \"World\"'"
Exemple #5
0
def test_escape_unicode_with_apostrophe():
    text = u"'Hüllö' \"Wörldß\""
    assert types.escape(text) == u"'''Hüllö'' \"Wörldß\"'"
Exemple #6
0
def test_escape_simple_string():
    text = "Hello World"
    assert types.escape(text) == "'Hello World'"
Exemple #7
0
def test_escape_simple_unicode():
    text = u"Hello World"
    assert types.escape(text) == u"'Hello World'"
Exemple #8
0
def test_escape_None():
    types.escape(None) == "NULL"
Exemple #9
0
def test_escape_unsupported_type():
    with pytest.raises(InterfaceError):
        types.escape(lambda *args: args)
Exemple #10
0
def test_escape_list():
    assert types.escape(("a", "b")) == "('a', 'b')"
Exemple #11
0
def test_escape_list_with_apostrophe():
    assert types.escape(("a'", "'b")) == "('a''', '''b')"
Exemple #12
0
def test_escape_unicode_with_apostrophe():
    text = u"'Hüllö' \"Wörldß\""
    assert types.escape(text) == u"'''Hüllö'' \"Wörldß\"'"
Exemple #13
0
def test_escape_string_with_apostrophe():
    text = "'Hello' \"World\""
    assert types.escape(text) == "'''Hello'' \"World\"'"
Exemple #14
0
def test_escape_simple_unicode():
    text = u"Hello World"
    assert types.escape(text) == u"'Hello World'"
Exemple #15
0
def test_escape_simple_string():
    text = "Hello World"
    assert types.escape(text) == "'Hello World'"
Exemple #16
0
def test_escape_unsupported_type():
    with pytest.raises(InterfaceError):
        types.escape(lambda *args: args)