summaryrefslogtreecommitdiff
path: root/t/post-netssleay.t
diff options
context:
space:
mode:
Diffstat (limited to 't/post-netssleay.t')
-rw-r--r--t/post-netssleay.t11
1 files changed, 6 insertions, 5 deletions
diff --git a/t/post-netssleay.t b/t/post-netssleay.t
index e8cb2fd..14fc98b 100644
--- a/t/post-netssleay.t
+++ b/t/post-netssleay.t
@@ -4,13 +4,14 @@ use strict;
use warnings;
use Test::More;
-plan( tests=>4 );
-
-use_ok 'Net::HTTPS::Any';
+BEGIN {
+ plan( tests=>4 );
+ use_ok 'Net::HTTPS::Any', 'https_post';
+};
#200
-my($content, $response, %headers) = Net::HTTPS::Any::https_post(
+my($content, $response, %headers) = https_post(
{ 'host' => 'secure.sisd.com',
'port' => 443,
'path' => '/freeside/index.html',
@@ -24,7 +25,7 @@ ok( length($content), 'Received content' );
#404
-my($content2, $response2, %headers2) = Net::HTTPS::Any::https_get(
+my($content2, $response2, %headers2) = https_post(
{ 'host' => 'secure.sisd.com',
'port' => 443,
'path' => '/freeside/notfound.html',