diff options
Diffstat (limited to 'test/triple_store/test_base.py')
-rw-r--r-- | test/triple_store/test_base.py | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/test/triple_store/test_base.py b/test/triple_store/test_base.py index a4b0559..4c4a9b6 100644 --- a/test/triple_store/test_base.py +++ b/test/triple_store/test_base.py @@ -1,9 +1,4 @@ -""" -Part of the bsfs test suite. -A copy of the license is provided with the project. -Author: Matthias Baumgartner, 2022 -""" # imports import unittest @@ -35,6 +30,12 @@ class DummyBase(TripleStoreBase): def schema(self, schema): pass + def get(self, node_type, query): + pass + + def fetch(self, node_type, filter, fetch): + pass + def exists(self, node_type, guids): pass |