diff options
Diffstat (limited to 'tests/it_url.t')
-rwxr-xr-x | tests/it_url.t | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/it_url.t b/tests/it_url.t index d2fbae0..9a4594e 100755 --- a/tests/it_url.t +++ b/tests/it_url.t @@ -3,6 +3,8 @@ # Tests for url.class, currently only constructor's parser +it::getopt("Usage: it_url.t [OPTIONS]"); + # Create object and parse url $url = new it_url('HTTP://falcon:joshua@www.Relog.CH:80/default.asp'); @@ -219,6 +221,14 @@ handle_server( ) ); +handle_server( + is( + it_url::get('http://localhost:8000/created_redirect'), + "Testserver output *before* created redirect", + 'it_url::get() does not follow Location of 201 (Created) result' + ) +); + $output = handle_server( ok( !it_url::get(U('http://localhost:8000/redirect_loop', array('num' => 10))), |