diff options
| author | Aymeric Augustin <aymeric.augustin@m4x.org> | 2011-11-18 22:54:24 +0000 |
|---|---|---|
| committer | Aymeric Augustin <aymeric.augustin@m4x.org> | 2011-11-18 22:54:24 +0000 |
| commit | 40b9532668b5e4d956c7be15f721be41d3defa3e (patch) | |
| tree | c0f5f7716e818f783897b281172ecfcd6d59ac87 /tests | |
| parent | 6f66b551081382323d37d9894aa0af53e9d9d725 (diff) | |
Fixed #16753 -- Supported network-path references in the syndication framework. Thanks cato for the report and patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17108 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/regressiontests/syndication/tests.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/regressiontests/syndication/tests.py b/tests/regressiontests/syndication/tests.py index 14dcd0a471..95b4efb4f4 100644 --- a/tests/regressiontests/syndication/tests.py +++ b/tests/regressiontests/syndication/tests.py @@ -305,3 +305,7 @@ class SyndicationFeedTest(FeedTestCase): views.add_domain('example.com', 'mailto:uhoh@djangoproject.com'), 'mailto:uhoh@djangoproject.com' ) + self.assertEqual( + views.add_domain('example.com', '//example.com/foo/?arg=value'), + 'http://example.com/foo/?arg=value' + ) |
