def test_pack_str():
    assert AMF3String.pack(STR, []) == STR_BYTES
Пример #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
Пример #4
0
def test_pack_str_cache():
    cache = []
    assert AMF3String.pack(STR, cache) == STR_BYTES
    assert AMF3String.pack(STR, cache) == STR_BYTES_CACHE