| 153 | /* ── Direct store queries (more reliable than MCP for tests) ────── */ |
| 154 | |
| 155 | static cbm_store_t *open_store(void) { |
| 156 | return cbm_store_open_path_existing(g_dbpath); |
| 157 | } |
| 158 | |
| 159 | static int get_node_count(void) { |
| 160 | cbm_store_t *s = open_store(); |
no test coverage detected