summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2015-12-04 20:53:46 -0800
committerIvan Kohler <ivan@freeside.biz>2015-12-04 20:53:46 -0800
commit7ce3ec81296de745371f64f8a27edb06c4e17fec (patch)
treed85eae0567a550e6e6cf0e5364f996339a94bbe2 /t
parent9857ce9e0927ef06728fdeda34ff9ad97455775d (diff)
Get rid of the LWP codepath, now just a simple wrapper for Business::OnlinePayment
Diffstat (limited to 't')
-rw-r--r--t/get-cryptssleay.t44
-rw-r--r--t/post-cryptssleay.t46
2 files changed, 0 insertions, 90 deletions
diff --git a/t/get-cryptssleay.t b/t/get-cryptssleay.t
deleted file mode 100644
index fa2ef21..0000000
--- a/t/get-cryptssleay.t
+++ /dev/null
@@ -1,44 +0,0 @@
-#!/usr/bin/perl
-
-use strict;
-use warnings;
-use Test::More;
-
-BEGIN {
-
- plan skip_all => "LWP tests disabled to avoid excessive dependencies";
-
- plan( tests=>4 );
- $Net::HTTPS::Any::skip_NetSSLeay=1;
- $Net::HTTPS::Any::skip_NetSSLeay=1;
- use_ok 'Net::HTTPS::Any', 'https_get';
-};
-
-#200
-
-my($content, $response, %headers) = https_get(
- { 'host' => 'www.fortify.net',
- 'port' => 443,
- 'path' => '/sslcheck.html',
- },
- 'net_https_any_test' => 1,
-);
-
-#like($response, qr/^HTTP\/[\d\.]+\s+200/i, 'Received 200 (OK) response');
-like($response, qr/^200/i, 'Received 200 (OK) response');
-
-ok( length($content), 'Received content' );
-
-#404
-
-my($content2, $response2, %headers2) = https_get(
- { 'host' => 'www.fortify.net',
- 'port' => 443,
- 'path' => '/notfound.html',
- },
- 'net_https_any_test' => 1,
-);
-
-#like($response2, qr/^HTTP\/[\d\.]+\s+404/i, 'Received 404 (Not found) response');
-like($response2, qr/^404/i, 'Received 404 (Not found) response');
-
diff --git a/t/post-cryptssleay.t b/t/post-cryptssleay.t
deleted file mode 100644
index f77fa32..0000000
--- a/t/post-cryptssleay.t
+++ /dev/null
@@ -1,46 +0,0 @@
-#!/usr/bin/perl
-
-use strict;
-use warnings;
-use Test::More;
-
-BEGIN {
-
- plan skip_all => "LWP tests disabled to avoid excessive dependencies";
-
- plan( tests=>4 );
- $Net::HTTPS::Any::skip_NetSSLeay=1;
- $Net::HTTPS::Any::skip_NetSSLeay=1;
- use_ok 'Net::HTTPS::Any', 'https_post';
-};
-
-#200
-
-my($content, $response, %headers) = https_post(
- { 'host' => 'www.google.com',
- 'port' => 443,
- 'path' => '/accounts/ServiceLoginAuth',
- 'args' => { 'posted' => 'data' },
- },
- 'net_https_any_test' => 1,
-);
-
-#like($response, qr/^HTTP\/[\d\.]+\s+200/i, 'Received 200 (OK) response');
-like($response, qr/^200/i, 'Received 200 (OK) response');
-
-ok( length($content), 'Received content' );
-
-#404
-
-my($content2, $response2, %headers2) = https_post(
- { 'host' => 'www.google.com',
- 'port' => 443,
- 'path' => '/notfound.html',
- 'args' => { 'length' => 'required' },
- },
- 'net_https_any_test' => 1,
-);
-
-#like($response2, qr/^HTTP\/[\d\.]+\s+404/i, 'Received 404 (Not FOund) response');
-like($response2, qr/^404/i, 'Received 404 (Not Found) response');
-