-- dep-fetcher-test-runner — kind:test-module -- -- Bridges the engine's test-module entry-point into the assertion-suite -- shipped by lib-management.dep-fetcher-test. The test lib is role=test -- so this runner cannot be kind:"module" — production consumers may -- not depend on test libs (engine_lib_resolver §role-constraint). -- -- All assertions live in the lib; this runner is a thin dispatcher so -- the same suite can be re-driven from any future engine-side test -- harness without re-writing it. local t = require("lib-management.dep-fetcher-test") function init(ctx) t.run_tests() end