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