Added lowercase RR tests where TTL is in play too.

This commit is contained in:
Alex Sergeyev 2014-08-27 16:36:28 -04:00
parent f40b966c47
commit 0df460c0fa
1 changed files with 4 additions and 0 deletions

View File

@ -763,6 +763,10 @@ func TestEmpty(t *testing.T) {
func TestLowercaseClassOrType(t *testing.T) {
var testrecords = []string{
"example.org. 300 IN a 1.2.3.4",
"example.org. 300 in A 1.2.3.4",
"example.org. 300 in a 1.2.3.4",
"example.org. 300 a 1.2.3.4",
"example.org. IN a 1.2.3.4",
"example.org. in A 1.2.3.4",
"example.org. in a 1.2.3.4",