FIlter warnings about deprecated syntax of the `url` template tag in recently added tests.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@16524 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Ramiro Morales 2011-07-08 00:39:59 +00:00
parent ce89ebe1f0
commit 68d18b8492
1 changed files with 9 additions and 0 deletions

View File

@ -1,6 +1,7 @@
from __future__ import with_statement
import os
import warnings
from django.core.exceptions import ImproperlyConfigured
from django.core.urlresolvers import reverse, clear_url_caches
@ -248,6 +249,14 @@ class URLTagTests(URLTestCaseBase):
"""
Test if the language tag works.
"""
def setUp(self):
self.save_warnings_state()
warnings.filterwarnings('ignore', category=DeprecationWarning,
module='django.template.defaulttags')
def tearDown(self):
self.restore_warnings_state()
def test_strings_only(self):
t = Template("""{% load i18n %}
{% language 'nl' %}{% url no-prefix-translated %}{% endlanguage %}