def test_pack_str():
    assert AMF3String.pack(STR, []) == STR_BYTES
Ejemplo n.º 2
0
def test_pack_str():
    assert AMF3String.pack(STR, []) == STR_BYTES
def test_pack_str_cache():
    cache = []
    assert AMF3String.pack(STR, cache) == STR_BYTES
    assert AMF3String.pack(STR, cache) == STR_BYTES_CACHE
Ejemplo n.º 4
0
def test_pack_str_cache():
    cache = []
    assert AMF3String.pack(STR, cache) == STR_BYTES
    assert AMF3String.pack(STR, cache) == STR_BYTES_CACHE