Browse Source

Revert "Reorganization"

This reverts commit f44c888a
Andrei Bondarenko 2 years ago
parent
commit
1931020bb1

+ 0 - 0
services/bottom/test/__init__.py


+ 0 - 0
services/bottom/test/fixtures/__init__.py


core/__init__.py → state/__init__.py


services/bottom/base.py → state/base.py


+ 1 - 1
services/bottom/devstate.py

@@ -1,4 +1,4 @@
-from services.bottom.pystate import PyState
+from state.pystate import PyState
 
 
 class DevState(PyState):

+ 1 - 1
services/bottom/pystate.py

@@ -1,6 +1,6 @@
 from typing import Any, List, Tuple, Optional
 
-from services.bottom.base import State, Node, Edge, Element
+from state.base import State, Node, Edge, Element
 
 
 class PyState(State):

services/__init__.py → state/test/__init__.py


services/bottom/test/conftest.py → state/test/conftest.py


services/bottom/__init__.py → state/test/fixtures/__init__.py


+ 1 - 1
services/bottom/test/fixtures/state.py

@@ -1,5 +1,5 @@
 import pytest
-from services.bottom.pystate import PyState
+from state.pystate import PyState
 # from state.rdfstate import RDFState
 # from state.neo4jstate import Neo4jState
 

services/bottom/test/test_create_dict.py → state/test/test_create_dict.py


services/bottom/test/test_create_edge.py → state/test/test_create_edge.py


services/bottom/test/test_create_node.py → state/test/test_create_node.py


services/bottom/test/test_create_nodevalue.py → state/test/test_create_nodevalue.py


services/bottom/test/test_delete_edge.py → state/test/test_delete_edge.py


services/bottom/test/test_delete_node.py → state/test/test_delete_node.py


services/bottom/test/test_read_dict.py → state/test/test_read_dict.py


services/bottom/test/test_read_dict_edge.py → state/test/test_read_dict_edge.py


services/bottom/test/test_read_dict_keys.py → state/test/test_read_dict_keys.py


services/bottom/test/test_read_dict_node.py → state/test/test_read_dict_node.py


services/bottom/test/test_read_edge.py → state/test/test_read_edge.py


services/bottom/test/test_read_incoming.py → state/test/test_read_incoming.py


services/bottom/test/test_read_outgoing.py → state/test/test_read_outgoing.py


services/bottom/test/test_read_reverse_dict.py → state/test/test_read_reverse_dict.py


services/bottom/test/test_read_value.py → state/test/test_read_value.py