summaryrefslogtreecommitdiff
path: root/worker/tests/https.rb
diff options
context:
space:
mode:
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