blocky/config/config_suite_test.go

16 lines
260 B
Go
Raw Normal View History

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