Kaydet (Commit) 68d18b84 authored tarafından Ramiro Morales's avatar Ramiro Morales

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
üst ce89ebe1
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 %}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment