blocky/lists/parsers/parsers_suite_test.go

20 lines
256 B
Go

package parsers
import (
"testing"
"github.com/0xERR0R/blocky/log"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
)
func init() {
log.Silence()
}
func TestLists(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "Parsers Suite")
}