coredns/plugin/pkg/nonwriter/nonwriter_test.go
Miek Gieben d8714e64e4 Remove the word middleware (#1067)
* Rename middleware to plugin

first pass; mostly used 'sed', few spots where I manually changed
text.

This still builds a coredns binary.

* fmt error

* Rename AddMiddleware to AddPlugin

* Readd AddMiddleware to remain backwards compat
2017-09-14 09:36:06 +01:00

19 lines
391 B
Go

package nonwriter
import (
"testing"
"github.com/miekg/dns"
)
func TestNonWriter(t *testing.T) {
nw := New(nil)
m := new(dns.Msg)
m.SetQuestion("example.org.", dns.TypeA)
if err := nw.WriteMsg(m); err != nil {
t.Errorf("Got error when writing to nonwriter: %s", err)
}
if x := nw.Msg.Question[0].Name; x != "example.org." {
t.Errorf("Expacted 'example.org.' got %q:", x)
}
}