diff options
author | Nathan Gass | 2012-10-16 09:09:30 +0000 |
---|---|---|
committer | Nathan Gass | 2012-10-16 09:09:30 +0000 |
commit | d2ef55e48f160f44a64188dddeade2d2b6d32ee3 (patch) | |
tree | 685c9e44a408f45329beece50ecafd6168cd4401 /tests/it_url_slow.t | |
parent | 35dbf89715a56fe976b0bb5714b00e7b94748895 (diff) | |
download | itools-d2ef55e48f160f44a64188dddeade2d2b6d32ee3.tar.gz itools-d2ef55e48f160f44a64188dddeade2d2b6d32ee3.tar.bz2 itools-d2ef55e48f160f44a64188dddeade2d2b6d32ee3.zip |
add test for large response
Diffstat (limited to 'tests/it_url_slow.t')
-rwxr-xr-x | tests/it_url_slow.t | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/it_url_slow.t b/tests/it_url_slow.t index 9474ef8..215528d 100755 --- a/tests/it_url_slow.t +++ b/tests/it_url_slow.t @@ -63,5 +63,13 @@ $output = server_output(); if (!$res || !$res2) diag($output); +$res = ok( + it_url::get(U('http://localhost:8000/repeat', 'string' => "abc", 'num' => 1024 * 1024)) == str_repeat("abc", 1024 * 1024), + 'it_url::get() handles large response', +); +$output = server_output(); +if (!$res) + diag($output); + proc_terminate($server); |