diff options
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); |