Test ShardedLMDBManager initialization.
(self, temp_dir, mock_lmdb)
| 427 | yield mock |
| 428 | |
| 429 | def test_init(self, temp_dir, mock_lmdb): |
| 430 | """Test ShardedLMDBManager initialization.""" |
| 431 | from datastudio.utils.database import ShardedLMDBManager |
| 432 | |
| 433 | manager = ShardedLMDBManager(cache_dir=temp_dir, num_shards=4) |
| 434 | assert manager is not None |
| 435 | |
| 436 | def test_exists(self, temp_dir, mock_lmdb): |
| 437 | """Test exists method.""" |
nothing calls this directly
no test coverage detected