The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
use strict;
use Test::More tests => 1;
use WWW::Curl::Easy;

sub body_callback {
    my ( $chunk, $handle ) = @_;
    return -1;
}

SKIP: {
    skip 'You need to set CURL_TEST_URL', 1 unless $ENV{CURL_TEST_URL};
    my $curl = new WWW::Curl::Easy;
    $curl->setopt( CURLOPT_URL,           $ENV{CURL_TEST_URL} );
    $curl->setopt( CURLOPT_WRITEFUNCTION, \&body_callback );
    my $code = $curl->perform;
    ok($code);
}