Ejemplo n.º 1
0
def test_DecodeIso_set():
    assert b.DecodeIso('ascii', 'replace').set(b'', u'\xe9') == b'?'
Ejemplo n.º 2
0
def test_DecodeIso_view_with_args():
    assert b.DecodeIso('utf-8').view(b'caf\xc3\xa9') == u'caf\xe9'
Ejemplo n.º 3
0
def test_DecodeIso_view():
    assert b.DecodeIso().view(b'hello') == 'hello'
Ejemplo n.º 4
0
def test_DecodeIso_set():
    assert b.DecodeIso("ascii", "replace").set(b"", u"\xe9") == b"?"
Ejemplo n.º 5
0
def test_DecodeIso_view_with_args():
    assert b.DecodeIso("utf-8").view(b"caf\xc3\xa9") == u"caf\xe9"
Ejemplo n.º 6
0
def test_DecodeIso_view():
    assert b.DecodeIso().view(b"hello") == "hello"