summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorTom Insam <tom@movieos.org>2012-12-03 12:08:22 +0000
committerTom Insam <tom@movieos.org>2012-12-03 12:11:32 +0000
commit161cafb6f695df5d886ed94ab2489a420cd97ecc (patch)
tree3f3cd43605335b11c2fed35568854a6f90e3682e /tests
parentbaae4b818778180fedfcfcfc7aa77acfb9b237fb (diff)
another failing test case for square brackets.
Diffstat (limited to 'tests')
-rw-r--r--tests/regressiontests/defaultfilters/tests.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/regressiontests/defaultfilters/tests.py b/tests/regressiontests/defaultfilters/tests.py
index 52268da2ec..8596f8c801 100644
--- a/tests/regressiontests/defaultfilters/tests.py
+++ b/tests/regressiontests/defaultfilters/tests.py
@@ -310,6 +310,10 @@ class DefaultFiltersTests(TestCase):
self.assertEqual(urlize('[see www.example.com]'),
'[see <a href="http://www.example.com" rel="nofollow">www.example.com</a>]' )
+ # Check urlize doesn't crash when square bracket is prepended to url (#19070)
+ self.assertEqual(urlize('see test[at[example.com'),
+ 'see <a href="http://test[at[example.com" rel="nofollow">test[at[example.com</a>' )
+
def test_wordcount(self):
self.assertEqual(wordcount(''), 0)