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 | 9f120205e0d7a0b2666b9fd21a5296db07e32fd8 (patch) | |
tree | b263ca1fa1863eca341d370dc5dd29ef97bc91bd /python/tests/codec.py | |
parent | 6aa2316d7712a709e9782919afd2a14cfaafc7a9 (diff) | |
download | qpid-python-9f120205e0d7a0b2666b9fd21a5296db07e32fd8.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/qpid@559055 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/tests/codec.py')
-rw-r--r-- | python/tests/codec.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/python/tests/codec.py b/python/tests/codec.py index 12dd5c85fc..785f1aba6b 100644 --- a/python/tests/codec.py +++ b/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): """ |