~ubuntu-branches/ubuntu/maverick/python-django/maverick

« back to all changes in this revision

Viewing changes to tests/regressiontests/utils/decorators.py

  • Committer: Bazaar Package Importer
  • Author(s): Chris Lamb
  • Date: 2010-05-21 07:52:55 UTC
  • mfrom: (1.1.10 upstream) (4.4.7 sid)
  • Revision ID: james.westby@ubuntu.com-20100521075255-i1zpeyc0k8512pd7
Tags: 1.2-1
New upstream stable release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
        Test a middleware that implements process_view.
12
12
        """
13
13
        self.client.get('/utils/xview/')
 
14
 
 
15
    def test_callable_process_view_middleware(self):
 
16
        """
 
17
        Test a middleware that implements process_view, operating on a callable class.
 
18
        """
 
19
        self.client.get('/utils/class_xview/')