Remove obsolete and misleading tests

This commit is contained in:
2026-07-18 23:32:26 +00:00
parent 2cba6d4512
commit bbc83ab042
5 changed files with 0 additions and 518 deletions

View File

@@ -1,16 +0,0 @@
package noop
import (
"context"
"testing"
"gitea.maximumdirect.net/eric/notarius/internal/framework/contracts"
)
func TestTypedNormalizerPreservesValue(t *testing.T) {
normalizer := NewTyped[string]()
result, err := normalizer.Normalize(context.Background(), contracts.TypedNormalizeRequest[string]{MergeOutput: contracts.MergeArtifact[string]{Value: "value"}})
if err != nil || result.Value != "value" {
t.Fatalf("result=%#v err=%v", result, err)
}
}