summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorCraig Andrews <candrews@integralblue.com>2009-08-28 16:18:05 -0400
committerCraig Andrews <candrews@integralblue.com>2009-08-28 16:18:45 -0400
commit3368452ebf3c738933b05e902c277296684e280b (patch)
treebc073d7f7bc4b5ccee4e06f71b027597ff4a6364 /tests
parenta0a376bf0eca00cce974de12c2f275006c1281ee (diff)
Add % and ~ as valid characters in the path, querystring, and fragment parts of URLs
Diffstat (limited to 'tests')
-rw-r--r--tests/URLDetectionTest.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/URLDetectionTest.php b/tests/URLDetectionTest.php
index 767f895bb..fd697c218 100644
--- a/tests/URLDetectionTest.php
+++ b/tests/URLDetectionTest.php
@@ -33,6 +33,10 @@ class URLDetectionTest extends PHPUnit_Framework_TestCase
'<a href="http://127.0.0.1:99/" rel="external">127.0.0.1:99</a>'),
array('127.0.0.1/test.php',
'<a href="http://127.0.0.1/test.php" rel="external">127.0.0.1/test.php</a>'),
+ array('127.0.0.1/~test',
+ '<a href="http://127.0.0.1/~test" rel="external">127.0.0.1/~test</a>'),
+ array('127.0.0.1/test%20stuff',
+ '<a href="http://127.0.0.1/test%20stuff" rel="external">127.0.0.1/test%20stuff</a>'),
array('http://[::1]:99/test.php',
'<a href="http://[::1]:99/test.php" rel="external">http://[::1]:99/test.php</a>'),
array('http://::1/test.php',