LWP-Curl
view release on metacpan or search on metacpan
#!perl -Tw
use strict;
use warnings;
use Test::More tests => 4;
use URI::file;
BEGIN { delete @ENV{ qw( http_proxy HTTP_PROXY PATH IFS CDPATH ENV BASH_ENV) }; }
use_ok( 'LWP::Curl' );
my $lwpcurl = LWP::Curl->new( );
isa_ok( $lwpcurl, 'LWP::Curl' );
my $get_uri = "http://localhost:3000/";
my $post_uri = "http://localhost:3000/foo";
my $post_data = {
'foo' => 'bar',
( run in 2.910 seconds using v1.01-cache-2.11-cpan-71847e10f99 )