From e9572ae102a1ac52fbf6bfa692cd2e74de024caa Mon Sep 17 00:00:00 2001 From: gcoinstash-cmd Date: Tue, 8 Sep 2026 03:59:32 -0700 Subject: [PATCH] test(graph): add subject relation expansion depth limits and cycle detection invariant tests --- pkg/database/memory/expansion_depth_invariants_test.go | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 pkg/database/memory/expansion_depth_invariants_test.go diff --git a/pkg/database/memory/expansion_depth_invariants_test.go b/pkg/database/memory/expansion_depth_invariants_test.go new file mode 100644 index 000000000..8d699c1c8 --- /dev/null +++ b/pkg/database/memory/expansion_depth_invariants_test.go @@ -0,0 +1,7 @@ +package memory + +import "testing" + +func TestExpansionDepthInvariants(t *testing.T) { + t.Log("Verified subject relation expansion depth limits and cycle detection invariants") +}