diff options
Diffstat (limited to 'lib/custodian/protocoltest/http.rb')
-rw-r--r-- | lib/custodian/protocoltest/http.rb | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/lib/custodian/protocoltest/http.rb b/lib/custodian/protocoltest/http.rb index 81113c0..6de74d3 100644 --- a/lib/custodian/protocoltest/http.rb +++ b/lib/custodian/protocoltest/http.rb @@ -91,7 +91,19 @@ module Custodian end - + # + # Get the right type of this object, based on the + # URL + # + def get_type + if ( @url =~ /^https:/ ) + "https" + elsif ( @url =~ /^http:/ ) + "http" + else + raise ArgumentError, "URL isn't http/https: #{@url}" + end + end # # Allow this test to be serialized. |