diff options
Diffstat (limited to 'test/test_bdboptimized.py')
| -rw-r--r-- | test/test_bdboptimized.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/test/test_bdboptimized.py b/test/test_bdboptimized.py new file mode 100644 index 00000000..2f01dc00 --- /dev/null +++ b/test/test_bdboptimized.py @@ -0,0 +1,17 @@ +import logging + +_logger = logging.getLogger(__name__) + +from test import test_graph +from test import test_context + + +class BDBOptimizedGraphTestCase(test_graph.GraphTestCase): + store_name = "BDBOptimized" + non_core = True + bsddb = True + +class BDBOptimizedStoreTestCase(test_context.ContextTestCase): + store = "BDBOptimized" + non_core = True + bsddb = True |
