コード例 #1
0
ファイル: test_all.py プロジェクト: takluyver/zget
def test_raises_timeout():
    with pytest.raises(zget.TimeoutException):
        zget.get("as", "", timeout=1)

    with pytest.raises(zget.TimeoutException):
        zget.put("asd", timeout=1)
コード例 #2
0
ファイル: test_all.py プロジェクト: takluyver/zget
def test_raises_interface():
    with pytest.raises(ValueError):
        zget.put("as", interface="asd")