summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/miekg/dns/rr_test.go
blob: 77a153b1e7e429c55c7df1fc7e139b886f001212 (plain)
1
2
3
4
5
6
7
package dns

// testRR returns the RR from string s. The error is thrown away.
func testRR(s string) RR {
	r, _ := NewRR(s)
	return r
}