| 146 | /* ── Direct store queries (more reliable than MCP for tests) ────── */ |
| 147 | |
| 148 | static cbm_store_t *open_store(void) { |
| 149 | return cbm_store_open_path(g_dbpath); |
| 150 | } |
| 151 | |
| 152 | static int get_node_count(void) { |
| 153 | cbm_store_t *s = open_store(); |
no test coverage detected