diff options
author | Steve Kemp <steve@steve.org.uk> | 2012-11-13 10:59:59 +0000 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2012-11-13 10:59:59 +0000 |
commit | a5e28e2ed57fa147bfd921f6a1df672d602f28aa (patch) | |
tree | 787aaaf676f0c442f1b574d591cf8d40df9ac3ed /worker/tests/http.rb | |
parent | 897d69b5e9bf47a49b4bd0c651a67d2ec91de437 (diff) |
Ensure we have a URL
Diffstat (limited to 'worker/tests/http.rb')
-rwxr-xr-x | worker/tests/http.rb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/worker/tests/http.rb b/worker/tests/http.rb index f1b5843..4f2cf0b 100755 --- a/worker/tests/http.rb +++ b/worker/tests/http.rb @@ -42,6 +42,16 @@ class HTTPTest @error = "" + + # + # Ensure we had a URL + # + if ( @test_data[:target_host].nil? ) + @error = "Missing URL for the test" + return false + end + + # # Do the fetch, if this success then we'll have the # @status + @text setup |