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