summaryrefslogtreecommitdiff
path: root/test/it_url.t
diff options
context:
space:
mode:
authorChristian Schneider2024-05-02 16:58:27 +0200
committerChristian Schneider2024-05-02 16:58:27 +0200
commitb1b06fc503373630d49bcc9adff916ae94e2552a (patch)
tree46bbdfd11f426a3b11fc9412cc44cec2ff620924 /test/it_url.t
parentb8af96c80cebdd9fae0f7200937615b4958d9f2a (diff)
downloaditools-b1b06fc503373630d49bcc9adff916ae94e2552a.tar.gz
itools-b1b06fc503373630d49bcc9adff916ae94e2552a.tar.bz2
itools-b1b06fc503373630d49bcc9adff916ae94e2552a.zip
Rename empty_on_fail to body_on_fail for future switching of default, currently also supports empty_on_fail for transition
Diffstat (limited to 'test/it_url.t')
-rwxr-xr-xtest/it_url.t14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/it_url.t b/test/it_url.t
index 1898d4b..302a754 100755
--- a/test/it_url.t
+++ b/test/it_url.t
@@ -257,23 +257,23 @@ if (!ok(
$output = handle_server(
ok(
- it_url::get(['url' => "http://$host/not_found_with_body", 'empty_on_fail' => false, 'it_error' => false]),
+ it_url::get(['url' => "http://$host/not_found_with_body", 'body_on_fail' => true, 'it_error' => false]),
'it_url::get() on 404 with body'
)
);
$output = handle_server(
ok(
- !it_url::get(['url' => "http://$host/not_found_with_body", 'empty_on_fail' => true, 'it_error' => false]),
- 'it_url::get() on 404 with body and empty_on_fail'
+ !it_url::get(['url' => "http://$host/not_found_with_body", 'body_on_fail' => false, 'it_error' => false]),
+ 'it_url::get() on 404 with body and body_on_fail'
)
);
$output = handle_server(
is(
- it::filter_keys(it_url::get(['url' => "http://$host/not_found_with_body", 'empty_on_fail' => true, 'it_error' => false, 'assoc' => true]), 'status,data'),
+ it::filter_keys(it_url::get(['url' => "http://$host/not_found_with_body", 'body_on_fail' => false, 'it_error' => false, 'assoc' => true]), 'status,data'),
['status' => 404, 'data' => null],
- 'it_url::get() on 404 with body, empty_on_fail and assoc'
+ 'it_url::get() on 404 with body, body_on_fail and assoc'
)
);
@@ -352,11 +352,11 @@ handle_server(
"success"
),
is(
- it_url::get(['url' => "http://$host/maybe_error?chance=100", 'empty_on_fail' => false]),
+ it_url::get(['url' => "http://$host/maybe_error?chance=100", 'body_on_fail' => true]),
"failure"
),
is(
- it_url::get(['url' => "http://$host/maybe_error?chance=25", 'empty_on_fail' => true, 'retries' => 10]),
+ it_url::get(['url' => "http://$host/maybe_error?chance=25", 'retries' => 10]),
"success",
"Retry on sporadically failing url in ::get"
),