| 162 | /* ── Per-project request manifest ───────────────────────────────────────── */ |
| 163 | |
| 164 | static void ws_write(const char *path, const char *body) { |
| 165 | FILE *f = cbm_fopen(path, "wb"); |
| 166 | if (f) { |
| 167 | (void)fputs(body, f); |
| 168 | (void)fclose(f); |
| 169 | } |
| 170 | } |
| 171 | |
| 172 | TEST(ws_manifest_absent_is_not_an_error) { |
| 173 | char *base = th_mktempdir("cbm_ws_m0"); |
no test coverage detected