diff options
Diffstat (limited to 'lib/custodian/protocoltest/http.rb')
-rw-r--r-- | lib/custodian/protocoltest/http.rb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/custodian/protocoltest/http.rb b/lib/custodian/protocoltest/http.rb index 05e71ae..4632630 100644 --- a/lib/custodian/protocoltest/http.rb +++ b/lib/custodian/protocoltest/http.rb @@ -143,6 +143,12 @@ module Custodian if line =~ /with host header '([^']+)'/ @host_override = $1.dup end + + # We can't test on IPv4-only or IPv6-only basis + if line =~ /ipv[46]_only/i + raise ArgumentError, "We cannot limit HTTP/HTTPS tests to IPv4/IPv6-only" + end + end |