mirror of
https://github.com/mudler/LocalAI
synced 2026-04-27 16:27:17 +00:00
14 lines
198 B
Go
14 lines
198 B
Go
|
|
package model_test
|
||
|
|
|
||
|
|
import (
|
||
|
|
"testing"
|
||
|
|
|
||
|
|
. "github.com/onsi/ginkgo/v2"
|
||
|
|
. "github.com/onsi/gomega"
|
||
|
|
)
|
||
|
|
|
||
|
|
func TestModel(t *testing.T) {
|
||
|
|
RegisterFailHandler(Fail)
|
||
|
|
RunSpecs(t, "LocalAI model test")
|
||
|
|
}
|