mirror of
https://github.com/danielmiessler/fabric
synced 2024-11-10 07:10:31 +00:00
22 lines
370 B
Go
22 lines
370 B
Go
package core
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestBuildChatSession(t *testing.T) {
|
|
chat := &Chat{
|
|
Context: "test context",
|
|
Pattern: "test pattern",
|
|
Message: "test message",
|
|
}
|
|
session, err := chat.BuildChatSession()
|
|
if err != nil {
|
|
t.Fatalf("BuildChatSession() error = %v", err)
|
|
}
|
|
|
|
if session == nil {
|
|
t.Fatalf("BuildChatSession() returned nil session")
|
|
}
|
|
}
|