quintodrome/engine/engine_suite_test.go

16 lines
261 B
Go
Raw Normal View History

2020-01-15 13:49:09 -09:00
package engine
import (
"testing"
"github.com/cloudsonic/sonic-server/log"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
2020-01-15 17:52:50 -09:00
func TestEngine(t *testing.T) {
2020-01-15 13:49:09 -09:00
log.SetLevel(log.LevelCritical)
RegisterFailHandler(Fail)
2020-01-15 17:52:50 -09:00
RunSpecs(t, "Engine Suite")
2020-01-15 13:49:09 -09:00
}