summaryrefslogtreecommitdiff
path: root/t/new/08duphandle.t
diff options
context:
space:
mode:
authorHyungKyu Song <hk76.song@samsung.com>2013-02-16 00:50:34 +0900
committerHyungKyu Song <hk76.song@samsung.com>2013-02-16 00:50:34 +0900
commit8ff7b1b92fdd50ce06331c821209f632f5a96bb7 (patch)
tree6b318e64217938d6cd8ca074214778d2db99de84 /t/new/08duphandle.t
parent3555375b5b187f5eb25bc6673e2479d54f20ada3 (diff)
downloadperl-WWW-Curl-8ff7b1b92fdd50ce06331c821209f632f5a96bb7.tar.gz
perl-WWW-Curl-8ff7b1b92fdd50ce06331c821209f632f5a96bb7.tar.bz2
perl-WWW-Curl-8ff7b1b92fdd50ce06331c821209f632f5a96bb7.zip
Diffstat (limited to 't/new/08duphandle.t')
-rw-r--r--t/new/08duphandle.t14
1 files changed, 14 insertions, 0 deletions
diff --git a/t/new/08duphandle.t b/t/new/08duphandle.t
new file mode 100644
index 0000000..39381e8
--- /dev/null
+++ b/t/new/08duphandle.t
@@ -0,0 +1,14 @@
+use strict;
+use Test::More tests => 1;
+use WWW::Curl::Easy;
+
+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} );
+ my @headers = ( 'Server: cURL', 'User-Agent: WWW::Curl/3.00' );
+ $curl->setopt( CURLOPT_HTTPHEADER, \@headers );
+ my $curl2 = $curl->duphandle;
+ my $code = $curl2->perform;
+ ok( $code == 0 );
+}