def test_session_storage_delete(): session = SessionStorage() with pytest.raises(NotImplementedError): session.delete('s') with pytest.raises(NotImplementedError): del session['s']
def test_session_storage_set(): session = SessionStorage() with pytest.raises(NotImplementedError): session.set('s', {}) with pytest.raises(NotImplementedError): session['s'] = {}
def test_session_storage_delete(): session = SessionStorage() session.delete('s')
def test_session_storage_set(): session = SessionStorage() session.set('s', {})
def test_session_storage_get(): session = SessionStorage() session.get('s')
def test_session_storage_get(): session = SessionStorage() with pytest.raises(NotImplementedError): session.get("s")
def test_session_storage_get(): session = SessionStorage() with pytest.raises(NotImplementedError): session.get('s')