blocky/lists/list_suite_test.go

17 lines
258 B
Go

package lists
import (
"testing"
. "github.com/0xERR0R/blocky/log"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
func TestLists(t *testing.T) {
ConfigureLogger("Warn", "text", true)
RegisterFailHandler(Fail)
RunSpecs(t, "Lists Suite")
}