diff options
| author | Sven Nierlein <Sven.Nierlein@consol.de> | 2014-06-13 14:01:12 +0200 |
|---|---|---|
| committer | Sven Nierlein <Sven.Nierlein@consol.de> | 2014-06-13 14:01:12 +0200 |
| commit | fb89accaaa831def2f948192a04eae84c4777531 (patch) | |
| tree | 0c2e8af89385310540b2d3b54fa7c9dd92b9c74b | |
| parent | c5a6c5136a2a7e629907b04a63dff059603bdb09 (diff) | |
| download | monitoring-plugins-fb89accaaa831def2f948192a04eae84c4777531.tar.gz | |
require at least HTTP::Daemon 6.01
since the test uses send_header from HTTP::Daemon::ClientConn which has been introduced in
HTTP::Daemon 6.01
| -rwxr-xr-x | plugins/tests/check_http.t | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/tests/check_http.t b/plugins/tests/check_http.t index c40bb076..225b449f 100755 --- a/plugins/tests/check_http.t +++ b/plugins/tests/check_http.t | |||
| @@ -20,8 +20,9 @@ use FindBin qw($Bin); | |||
| 20 | my $common_tests = 70; | 20 | my $common_tests = 70; |
| 21 | my $ssl_only_tests = 8; | 21 | my $ssl_only_tests = 8; |
| 22 | # Check that all dependent modules are available | 22 | # Check that all dependent modules are available |
| 23 | eval "use HTTP::Daemon 6.01;"; | ||
| 24 | plan skip_all => 'HTTP::Daemon >= 6.01 required' if $@; | ||
| 23 | eval { | 25 | eval { |
| 24 | require HTTP::Daemon; | ||
| 25 | require HTTP::Status; | 26 | require HTTP::Status; |
| 26 | require HTTP::Response; | 27 | require HTTP::Response; |
| 27 | }; | 28 | }; |
