# 1,558 Tests Green and No Auth: The Tests That Never Actually Ran

> Source: <https://dev.to/debashish_ghosal/1558-tests-green-and-no-auth-the-tests-that-never-actually-ran-nkk>
> Published: 2026-09-19 20:43:50+00:00

A test named `test_all_adapters_importable` asserted nothing. It would pass forever, even if every adapter was broken.

57 of 65 assertion files were in the wrong format, and the harness returned `0 / 0` without a whisper.

If a green suite makes you relax, this post is going to un-relax you.

**1. The test gutted to `pass`.** In [planner-critic-engine](https://github.com/deghosal-2026/planner-critic-engine), a test literally had a `pass` body:

``` python
def test_all_adapters_importable():
    # if it imported, it's fine — except this proves nothing
    pass
```

It was caught in code review, not by CI, and only before the LLM sweep because a human read it. Issue #236.

**2. The harness that returned `0 / 0` and called it green.** In the same repo, 57 of 65 assertion files were in the wrong format. The harness parsed them, found zero assertions to run, and returned `0 / 0` — which it treated as success. The suite was green because it had executed nothing.

**3. The auth guard that never ran.** In [CauterRule](https://github.com/deghosal-2026/CauterRule) v0.3.0 the suite reported **1,558 tests green**. The MCP HTTP bearer-auth guard never ran, because an import was swallowed. Every unit test passed. The only reason we found the unauthenticated store read was a **Docker field test** running the real thing in a real container.

In all three cases the bug mattered, but it wasn't the scariest part. The scariest part was the **confidence**.

We treat "tests pass" as evidence. Sometimes it's evidence that the harness silently skipped a module, or that an import was swallowed, or that a fixture file was parsed into an empty set. The suite stays green and the system ships with an unauthenticated read path.

The fix is not to write more tests. It's to assert that your tests actually ran and actually asserted.

``` python
def test_suite_is_not_empty():
    results = run_assertion_files("tests/assertions/")
    assert results.executed > 0, "harness ran zero assertions"
    assert results.assertions > 0, "assertions parsed to empty set"
```

Two rules fall out of this:

`0 / 0` is an error state, not a pass.
That single distinction is the difference between a flaky gate and a strict one.

Meta-tests add process, and process can rot — a meta-test that stops checking is just another green checkmark. And no amount of test discipline catches the false negatives you never thought to test for. This reduces the class of "green but broken." It does not eliminate it.

But it does close the worst category: the test that never ran and told you everything was fine.

What's the last green build you caught lying to you? I now trust a green suite about as far as I can read its raw output.

Repos and receipts: [CauterRule](https://github.com/deghosal-2026/CauterRule) · [CauterRule v0.3.0 field test report](https://github.com/deghosal-2026/CauterRule/blob/main/docs/field-test/v0.3.0/FIELD_TEST_REPORT.md) · [PlannerCritic failure-mode register](https://github.com/deghosal-2026/planner-critic-engine/blob/main/docs/reference/failure-modes.md) · [agent-tooltrust design decisions](https://github.com/deghosal-2026/agent-tooltrust/blob/main/docs/design/design-decisions.md) — all MIT, all public.
