coredns/plugin/dnstap/context_test.go
2018-08-01 22:58:23 +00:00

15 lines
224 B
Go

package dnstap
import (
"context"
"testing"
)
func TestDnstapContext(t *testing.T) {
ctx := tapContext{context.TODO(), Dnstap{}}
tapper := TapperFromContext(ctx)
if tapper == nil {
t.Fatal("Can't get tapper")
}
}