mirror of
https://github.com/mudler/LocalAI
synced 2026-04-21 21:37:21 +00:00
14 lines
197 B
Go
14 lines
197 B
Go
|
|
package peg_test
|
||
|
|
|
||
|
|
import (
|
||
|
|
"testing"
|
||
|
|
|
||
|
|
. "github.com/onsi/ginkgo/v2"
|
||
|
|
. "github.com/onsi/gomega"
|
||
|
|
)
|
||
|
|
|
||
|
|
func TestPeg(t *testing.T) {
|
||
|
|
RegisterFailHandler(Fail)
|
||
|
|
RunSpecs(t, "PEG Parser test suite")
|
||
|
|
}
|