summaryrefslogtreecommitdiff
path: root/worker/tests/https.rb
diff options
context:
space:
mode:
authorSteve Kemp <steve@steve.org.uk>2012-11-12 21:00:16 +0000
committerSteve Kemp <steve@steve.org.uk>2012-11-12 21:00:16 +0000
commit6334b9cdfc47bd85b2ce236572e08406324d25cd (patch)
treebd0bd3cc279d8377efde2affc8dc223bfb858ca2 /worker/tests/https.rb
Initial dump of code.
Diffstat (limited to 'worker/tests/https.rb')
-rw-r--r--worker/tests/https.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/worker/tests/https.rb b/worker/tests/https.rb
new file mode 100644
index 0000000..b905d79
--- /dev/null
+++ b/worker/tests/https.rb
@@ -0,0 +1,20 @@
+
+#
+# Run a HTTPS test.
+#
+#
+# Return value
+# TRUE: The host is up
+#
+# FALSE: The host is not up
+#
+def https_test( params )
+
+ #
+ # Get the URL to poll.
+ #
+ host = params['target_host']
+
+ puts "HTTPS FAILED - TODO - IMPLEMENT"
+ return false
+end