test: add strict nats capability inventory guardrail

This commit is contained in:
Joseph Doherty
2026-02-23 14:32:55 -05:00
parent f76b599e2d
commit ec373d36f6
3 changed files with 83 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
namespace NATS.Server.Tests.Parity;
public class NatsStrictCapabilityInventoryTests
{
[Fact]
public void Strict_capability_inventory_has_no_open_items_marked_done_without_behavior_and_tests()
{
var report = NatsCapabilityInventory.Load(
"docs/plans/2026-02-23-nats-strict-full-go-parity-map.md");
report.InvalidRows.ShouldBeEmpty();
}
}