agent/pkg/brain/alias_test.go
Virgil 863f76fb71 feat(models): add RFC-named model aliases
Co-Authored-By: Virgil <virgil@lethean.io>
2026-04-02 00:53:11 +00:00

18 lines
392 B
Go

// SPDX-License-Identifier: EUPL-1.2
package brain
import "testing"
func TestAlias_BrainMemory_Good(t *testing.T) {
var memory BrainMemory
memory.ID = "mem-123"
memory.Type = "convention"
if memory.ID != "mem-123" {
t.Fatalf("expected BrainMemory alias to behave like Memory")
}
if memory.Type != "convention" {
t.Fatalf("expected BrainMemory alias to behave like Memory")
}
}