coredns-split/setup_test.go
Adphi 99971d8b4c
naive implementation
Signed-off-by: Adphi <philippe.adrien.nousse@gmail.com>
2022-03-24 18:33:18 +01:00

17 lines
349 B
Go

package split
import (
"testing"
"github.com/coredns/caddy"
)
// TestSetup tests the various things that should be parsed by setup.
// Make sure you also test for parse errors.
func TestSetup(t *testing.T) {
c := caddy.NewTestController("dns", `split`)
if err := setup(c); err != nil {
t.Fatalf("Expected no errors, but got: %v", err)
}
}