Revert "Reorganization"

This reverts commit f44c888a
This commit is contained in:
Andrei Bondarenko 2021-07-24 21:50:12 +02:00
parent f44c888ace
commit 1931020bb1
25 changed files with 3 additions and 3 deletions

19
state/test/fixtures/state.py vendored Normal file
View file

@ -0,0 +1,19 @@
import pytest
from state.pystate import PyState
# from state.rdfstate import RDFState
# from state.neo4jstate import Neo4jState
@pytest.fixture(params=[
(PyState,),
# (RDFState, "http://example.org/#"),
# (Neo4jState,)
])
def state(request):
if len(request.param) > 1:
state = request.param[0](*request.param[1:])
else:
state = request.param[0]()
yield state
# if isinstance(state, Neo4jState):
# state.close(clear=True)