diff options
| author | Aymeric Augustin | 2013-11-09 20:18:59 +0100 | 
|---|---|---|
| committer | Aymeric Augustin | 2013-11-10 10:43:45 +0100 | 
| commit | ad31833f901267f4233337ded8e610dfc81d9e6a (patch) | |
| tree | 7c661e505cbc55eb19fbcb757dfe82235a2151e0 /tests/test_integration.py | |
| parent | b1d8b119f5d7d9531d7b93aea18de368827158ae (diff) | |
| download | django-debug-toolbar-ad31833f901267f4233337ded8e610dfc81d9e6a.tar.bz2 | |
Move two tests specific to the request vars panel in their module.
Diffstat (limited to 'tests/test_integration.py')
| -rw-r--r-- | tests/test_integration.py | 12 | 
1 files changed, 0 insertions, 12 deletions
| diff --git a/tests/test_integration.py b/tests/test_integration.py index 2a2d4da..4bb0d38 100644 --- a/tests/test_integration.py +++ b/tests/test_integration.py @@ -137,18 +137,6 @@ class DebugToolbarIntegrationTestCase(TestCase):          self.assertContains(response, 'LÀTÍN')      # template          self.assertContains(response, 'djDebug')    # toolbar -    def test_non_ascii_session(self): -        response = self.client.get('/set_session/') -        if six.PY3: -            self.assertContains(response, 'où') -        else: -            self.assertContains(response, 'o\\xf9') -            self.assertContains(response, 'l\\xc3\\xa0') - -    def test_object_with_non_ascii_repr_in_request_vars(self): -        response = self.client.get('/non_ascii_request/') -        self.assertContains(response, 'nôt åscíì') -      def test_xml_validation(self):          response = self.client.get('/regular/XML/')          ET.fromstring(response.content)     # shouldn't raise ParseError | 
