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
commitab76b9e9641d4735f75d96402758bd72acf65b8c (patch)
tree11ab94330831272d3dac6a24220c25b1ed0f2af3 /lib/custodian.rb
parent8d7af91b9409ac5797f02b9a2d2769001d7031cb (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"