summaryrefslogtreecommitdiff
path: root/lib/custodian.rb
diff options
context:
space:
mode:
authorSteve Kemp <steve@steve.org.uk>2012-11-14 22:17:41 +0000
committerSteve Kemp <steve@steve.org.uk>2012-11-14 22:17:41 +0000
commite1dff6c3d70e4b72e69365bec1f2cef4357c5bb4 (patch)
tree11ab94330831272d3dac6a24220c25b1ed0f2af3 /lib/custodian.rb
parentec2668b143bf4634621ebc1e93c1666c427fb304 (diff)
Remap HTTPS -> HTTP
Diffstat (limited to 'lib/custodian.rb')
-rw-r--r--lib/custodian.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/custodian.rb b/lib/custodian.rb
index 79fca72..6e95f38 100644
--- a/lib/custodian.rb
+++ b/lib/custodian.rb
@@ -149,6 +149,7 @@ class Custodian
# Given a test-type "foo" we'll attempt to instantiate a class called FOOTest.
#
test = hash['test_type']
+ test = "http" if ( test == "https" )
clazz = test.upcase
clazz = "#{clazz}Test"