blocky/lists/list_suite_test.go

17 lines
258 B
Go
Raw Normal View History

2020-05-04 22:20:13 +02:00
package lists
import (
"testing"
2021-08-25 22:06:34 +02:00
. "github.com/0xERR0R/blocky/log"
2020-05-04 22:20:13 +02:00
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
func TestLists(t *testing.T) {
ConfigureLogger("Warn", "text", true)
2020-05-04 22:20:13 +02:00
RegisterFailHandler(Fail)
RunSpecs(t, "Lists Suite")
}