diff options
author | Christian Schneider | 2010-04-14 17:05:58 +0000 |
---|---|---|
committer | Christian Schneider | 2010-04-14 17:05:58 +0000 |
commit | cf4e235bd13cff414a8e5146c179d3b4155e1d9c (patch) | |
tree | cd823e9ed6c8ab5493a9ee344aa147c1c77fe347 /tests/it_url.t | |
parent | f4e93bf8d9a80f82454b147dfb8481b102ec717f (diff) | |
download | itools-cf4e235bd13cff414a8e5146c179d3b4155e1d9c.tar.gz itools-cf4e235bd13cff414a8e5146c179d3b4155e1d9c.tar.bz2 itools-cf4e235bd13cff414a8e5146c179d3b4155e1d9c.zip |
Added it_xml test for invalid latin1 character, converted all tests to old syntax
Diffstat (limited to 'tests/it_url.t')
-rwxr-xr-x | tests/it_url.t | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/it_url.t b/tests/it_url.t index 1117aff..d017610 100755 --- a/tests/it_url.t +++ b/tests/it_url.t @@ -67,14 +67,14 @@ $_SERVER['HTTP_HOST'] = "gna.ch"; is( it_url::absolute("/"), 'http://gna.ch:/', - 'it_url::absolute basic', + 'it_url::absolute basic' ); $_SERVER['SERVER_PORT'] = 42; is( it_url::absolute("/port"), 'http://gna.ch:42/port', - 'it_url::absolute with non-standard port', + 'it_url::absolute with non-standard port' ); $_SERVER['HTTPS'] = true; @@ -82,7 +82,7 @@ $_SERVER['SERVER_PORT'] = 443; is( it_url::absolute("/https"), 'https://gna.ch/https', - 'it_url::absolute for https', + 'it_url::absolute for https' ); ?> |