コード例 #1
0
def test_pack_str():
    assert AMF3String.pack(STR, []) == STR_BYTES
コード例 #2
0
def test_pack_str():
    assert AMF3String.pack(STR, []) == STR_BYTES
コード例 #3
0
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