diff options
author | ivan <ivan> | 2010-05-01 20:05:57 +0000 |
---|---|---|
committer | ivan <ivan> | 2010-05-01 20:05:57 +0000 |
commit | 90eca2090a47dd4755de4fa707597ff2c025ecaa (patch) | |
tree | 532b7e730f60304496dd7cd843b24bcede585a51 /t | |
parent | 70bd3550f03d20ad22884c93ed2cb93627843736 (diff) |
- Pull in changes from Business::OnlinePayment::HTTPS 0.09 from
Business::OnlinePayment 3.00
- Default Content-Type to application/x-www-form-urlencoded
- Added WHY THIS MODULE section to POD
- Updated tests for new world of not returning HTTP as part of the
response code
- Removed meaningless Content-Type handling from https_get
- Added/documented debugging option
Diffstat (limited to 't')
-rw-r--r-- | t/get-cryptssleay.t | 6 | ||||
-rw-r--r-- | t/get-netssleay.t | 6 | ||||
-rw-r--r-- | t/post-cryptssleay.t | 6 | ||||
-rw-r--r-- | t/post-netssleay.t | 6 |
4 files changed, 16 insertions, 8 deletions
diff --git a/t/get-cryptssleay.t b/t/get-cryptssleay.t index 920f50a..43ac5f4 100644 --- a/t/get-cryptssleay.t +++ b/t/get-cryptssleay.t @@ -21,7 +21,8 @@ my($content, $response, %headers) = https_get( 'net_https_any_test' => 1, ); -like($response, qr/^HTTP\/[\d\.]+\s+200/i, 'Received 200 (OK) response'); +#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' ); @@ -35,5 +36,6 @@ my($content2, $response2, %headers2) = https_get( 'net_https_any_test' => 1, ); -like($response2, qr/^HTTP\/[\d\.]+\s+404/i, 'Received 404 (OK) response'); +#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/get-netssleay.t b/t/get-netssleay.t index d36111d..22a7e23 100644 --- a/t/get-netssleay.t +++ b/t/get-netssleay.t @@ -19,7 +19,8 @@ my($content, $response, %headers) = https_get( 'net_https_any_test' => 1, ); -like($response, qr/^HTTP\/[\d\.]+\s+200/i, 'Received 200 (OK) response'); +#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' ); @@ -33,5 +34,6 @@ my($content2, $response2, %headers2) = https_get( 'net_https_any_test' => 1, ); -like($response2, qr/^HTTP\/[\d\.]+\s+404/i, 'Received 404 (OK) response'); +#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 index 2bf52ff..c9f13ab 100644 --- a/t/post-cryptssleay.t +++ b/t/post-cryptssleay.t @@ -21,7 +21,8 @@ my($content, $response, %headers) = https_post( 'net_https_any_test' => 1, ); -like($response, qr/^HTTP\/[\d\.]+\s+200/i, 'Received 200 (OK) response'); +#like($response, qr/^HTTP\/[\d\.]+\s+200/i, 'Received 200 (Not Found) response'); +like($response, qr/^200/i, 'Received 200 (Not Found) response'); ok( length($content), 'Received content' ); @@ -35,5 +36,6 @@ my($content2, $response2, %headers2) = https_post( 'net_https_any_test' => 1, ); -like($response2, qr/^HTTP\/[\d\.]+\s+404/i, 'Received 404 (OK) response'); +#like($response2, qr/^HTTP\/[\d\.]+\s+404/i, 'Received 404 (OK) response'); +like($response2, qr/^404/i, 'Received 404 (OK) response'); diff --git a/t/post-netssleay.t b/t/post-netssleay.t index 14fc98b..307bdb3 100644 --- a/t/post-netssleay.t +++ b/t/post-netssleay.t @@ -19,7 +19,8 @@ my($content, $response, %headers) = https_post( 'net_https_any_test' => 1, ); -like($response, qr/^HTTP\/[\d\.]+\s+200/i, 'Received 200 (OK) response'); +#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' ); @@ -33,5 +34,6 @@ my($content2, $response2, %headers2) = https_post( 'net_https_any_test' => 1, ); -like($response2, qr/^HTTP\/[\d\.]+\s+404/i, 'Received 404 (OK) response'); +#like($response2, qr/^HTTP\/[\d\.]+\s+404/i, 'Received 404 (Not Found) response'); +like($response2, qr/^404/i, 'Received 404 (Not Found) response'); |