~tribaal/txaws/xss-hardening

« back to all changes in this revision

Viewing changes to txaws/server/tests/test_method.py

  • Committer: Thomas Hervé
  • Date: 2011-09-16 21:10:05 UTC
  • mfrom: (94.1.1 add-schema-extend)
  • Revision ID: thomas@canonical.com-20110916211005-xgfgor9w8dou0zo0
Merge add-schema-extend [a=bigkevmcd] [r=jkakar, therve] [f=851908]

This allows a parent schema to be extended with additional schema parameters.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
from txaws.server.method import Method
4
4
 
5
5
 
6
 
class MethodTestCase(TestCase):
 
6
class MethodTest(TestCase):
7
7
 
8
8
    def setUp(self):
9
 
        super(MethodTestCase, self).setUp()
 
9
        super(MethodTest, self).setUp()
10
10
        self.method = Method()
11
11
 
12
12
    def test_defaults(self):