diff options
author | Matthias Baumgartner <dev@igsor.net> | 2022-12-19 13:40:02 +0100 |
---|---|---|
committer | Matthias Baumgartner <dev@igsor.net> | 2022-12-19 13:40:02 +0100 |
commit | a0f2308adcb226d28de3355bc7115a6d9b669462 (patch) | |
tree | f3d695a7a04e4fc2f40ae5130e120dee87d038ef /test | |
parent | 791918039979d0743fd2ea4b9a5e74593ff96fd0 (diff) | |
download | bsfs-a0f2308adcb226d28de3355bc7115a6d9b669462.tar.gz bsfs-a0f2308adcb226d28de3355bc7115a6d9b669462.tar.bz2 bsfs-a0f2308adcb226d28de3355bc7115a6d9b669462.zip |
import fixes
Diffstat (limited to 'test')
-rw-r--r-- | test/triple_store/test_base.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/triple_store/test_base.py b/test/triple_store/test_base.py index a4b0559..a0c3260 100644 --- a/test/triple_store/test_base.py +++ b/test/triple_store/test_base.py @@ -35,6 +35,9 @@ class DummyBase(TripleStoreBase): def schema(self, schema): pass + def get(self, node_type, query): + pass + def exists(self, node_type, guids): pass |