コード例 #1
0
ファイル: test_zip.py プロジェクト: pradghos/zict
def test_close(fn):
    z = Zip(fn)

    z['x'] = b'123'
    z.close()

    zz = zipfile.ZipFile(fn, mode='r')
    assert zz.read('x') == b'123'

    with pytest.raises(IOError):
        z['y'] = b'123'
コード例 #2
0
def test_close(fn):
    z = Zip(fn)

    z["x"] = b"123"
    z.close()

    zz = zipfile.ZipFile(fn, mode="r")
    assert zz.read("x") == b"123"

    with pytest.raises(IOError):
        z["y"] = b"123"
コード例 #3
0
ファイル: test_zip.py プロジェクト: mrocklin/zict
def test_close(fn):
    z = Zip(fn)

    z['x'] = b'123'
    z.close()

    zz = zipfile.ZipFile(fn, mode='r')
    assert zz.read('x') == b'123'

    with pytest.raises(IOError):
        z['y'] = b'123'