diff options
Diffstat (limited to 'worker/tests/http.rb')
-rw-r--r-- | worker/tests/http.rb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/worker/tests/http.rb b/worker/tests/http.rb new file mode 100644 index 0000000..56163c8 --- /dev/null +++ b/worker/tests/http.rb @@ -0,0 +1,20 @@ + +# +# Run a HTTP test. +# +# +# Return value +# TRUE: The host is up +# +# FALSE: The host is not up +# +def http_test( params ) + + # + # Get the URL to fetch. + # + host = params['target_host'] + + puts "HTTP FAILED - TODO - IMPLEMENT" + return false +end |