* adding tests
[m6w6/ext-http] / tests / 010_abs_uri.phpt
diff --git a/tests/010_abs_uri.phpt b/tests/010_abs_uri.phpt
new file mode 100644 (file)
index 0000000..67b1beb
--- /dev/null
@@ -0,0 +1,18 @@
+--TEST--
+http_absolute_uri() with relative paths
+--SKIPIF--
+<?php 
+extension_loaded('http') or die('ext/http not available');
+strncasecmp(PHP_SAPI, 'CLI', 3) or die('cannot run tests with CLI');
+?>
+--FILE--
+<?php
+echo http_absolute_uri('page'), "\n";
+echo http_absolute_uri('with/some/path/'), "\n";
+?>
+--EXPECTF--
+Content-type: text/html
+X-Powered-By: PHP/%s
+
+http://localhost/page
+http://localhost/with/some/path/