Beispiel #1
0
def test_session_storage_get():
    session = SessionStorage()
    session.get('s')
Beispiel #2
0
def test_session_storage_get():
    session = SessionStorage()
    with pytest.raises(NotImplementedError):
        session.get('s')
    with pytest.raises(NotImplementedError):
        session['s']
Beispiel #3
0
def test_session_storage_get():
    session = SessionStorage()
    with pytest.raises(NotImplementedError):
        session.get('s')
    with pytest.raises(NotImplementedError):
        session['s']