blocky/stats/stats_suite_test.go

16 lines
257 B
Go
Raw Normal View History

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