blocky/resolver/resolver_suite_test.go

17 lines
272 B
Go
Raw Normal View History

2020-05-04 22:20:13 +02:00
package resolver_test
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 TestResolver(t *testing.T) {
ConfigureLogger("Warn", "text", true)
2020-05-04 22:20:13 +02:00
RegisterFailHandler(Fail)
RunSpecs(t, "Resolver Suite")
}