diff options
author | Gordon Sim <gsim@apache.org> | 2007-07-24 14:08:32 +0000 |
---|---|---|
committer | Gordon Sim <gsim@apache.org> | 2007-07-24 14:08:32 +0000 |
commit | dc07ee70d71b2347c95a63878ad1ac7fc954f703 (patch) | |
tree | 01bf09cdd4add3a6ab86140b356fd88bef034751 /qpid/python/tests/codec.py | |
parent | cd2d0d3cf3263f5dbf9291d4b755f7fa01c3a798 (diff) | |
download | qpid-python-dc07ee70d71b2347c95a63878ad1ac7fc954f703.tar.gz |
Some initial 0-10 support including placeholders for new domains, use of execution layer for synchronising methods with no explicit responses and a new set of tests (mainly just copies of the 0-9 ones, but these will be altered as 0-10 support progresses).
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@559055 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/python/tests/codec.py')
-rw-r--r-- | qpid/python/tests/codec.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/qpid/python/tests/codec.py b/qpid/python/tests/codec.py index 12dd5c85fc..785f1aba6b 100644 --- a/qpid/python/tests/codec.py +++ b/qpid/python/tests/codec.py @@ -432,13 +432,6 @@ class FieldTableTestCase(BaseDataTypes): """ self.failUnlessEqual(self.callFunc('encode_table', {'$key1':'value1'}), '\x00\x00\x00\x11\x05$key1S\x00\x00\x00\x06value1', 'valid name value pair encoding FAILED...') - # ------------------------------------------- - def test_field_table_invalid_field_name(self): - """ - invalid field name - """ - self.failUnlessRaises(Exception, self.codec.encode_table, {'1key1':'value1'}) - # ---------------------------------------------------- def test_field_table_invalid_field_name_length(self): """ |