The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#!perl
use strict;
use warnings;
use Test::More tests => 3;

BEGIN { use_ok( 'WWW::Curl::Easy' ); }

ok (CURLOPT_URL == 10000+2, "Constant loaded ok");
ok (CURLE_URL_MALFORMAT, "CURLE_ error constant can be used");