diff options
author | Steve Kemp <steve@steve.org.uk> | 2012-12-10 13:17:01 +0000 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2012-12-10 13:17:01 +0000 |
commit | 9bcae26bd674ae921d2c0a9d4e4f6a7c727ba61a (patch) | |
tree | 88d6faf9e1a981ae59cd8593a2dc322ab174b2f2 /lib | |
parent | b215a3f23613138e574064d7f8647c1776db4a10 (diff) |
Ensure we raise an exception if we're trying to resolve an unknown record-type.
Added test-case too.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/custodian/protocoltest/dns.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/custodian/protocoltest/dns.rb b/lib/custodian/protocoltest/dns.rb index 65dfa2b..eb76f77 100644 --- a/lib/custodian/protocoltest/dns.rb +++ b/lib/custodian/protocoltest/dns.rb @@ -60,6 +60,7 @@ module Custodian raise ArgumentError, "Missing host to resolve" unless( @resolve_name ) raise ArgumentError, "Missing type of record to lookup" unless( @resolve_type ) raise ArgumentError, "Missing expected results" unless( @resolve_expected ) + raise ArgumentError, "Uknown record type: #{@resolve_type}" unless( @resolve_type =~ /^(A|NS|MX|AAAA)$/ ) # # The host to query against |