general tests update

This commit is contained in:
Radoslav Pitonak 2017-05-29 12:09:43 +02:00
commit f79af84dac
9 changed files with 61 additions and 64 deletions

5
tests/scripts/http.pl Normal file
View file

@ -0,0 +1,5 @@
use HTTP::Tiny;
my $response = HTTP::Tiny->new->get('http://example.com/');
die "Failed!\n" unless $response->{success};