Fix the delegation handling in the *file* and *dnssec* middleware. Refactor tests a bit and show that they are failling. Add a Tree printer, cleanups and tests. Fix wildcard test - should get no answer from empty-non-terminal
12 lines
182 B
Go
12 lines
182 B
Go
package file
|
|
|
|
import (
|
|
"strings"
|
|
"testing"
|
|
)
|
|
|
|
func BenchmarkParseInsert(b *testing.B) {
|
|
for i := 0; i < b.N; i++ {
|
|
Parse(strings.NewReader(dbMiekENTNL), testzone, "stdin")
|
|
}
|
|
}
|