blocky/util/util_suite_test.go

16 lines
255 B
Go
Raw Normal View History

2021-02-05 21:55:48 +01:00
package util
import (
"testing"
2021-08-25 22:06:34 +02:00
. "github.com/0xERR0R/blocky/log"
2021-02-05 21:55:48 +01:00
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
func TestLists(t *testing.T) {
ConfigureLogger("Warn", "text", true)
2021-02-05 21:55:48 +01:00
RegisterFailHandler(Fail)
RunSpecs(t, "Util Suite")
}