summaryrefslogtreecommitdiff
path: root/python/tests
diff options
context:
space:
mode:
authorRafael H. Schloming <rhs@apache.org>2009-08-20 23:03:28 +0000
committerRafael H. Schloming <rhs@apache.org>2009-08-20 23:03:28 +0000
commitf34769235c625d5afe031076b6738f6ae672c3ff (patch)
treef680c97f82a5dfa17150640c52c6356625e2a214 /python/tests
parenta55a45cac6111b666de84823686bf6405483099e (diff)
downloadqpid-python-f34769235c625d5afe031076b6738f6ae672c3ff.tar.gz
implemented reconnect and separated out the protocol driver from the messaging client
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@806393 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/tests')
-rw-r--r--python/tests/datatypes.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/python/tests/datatypes.py b/python/tests/datatypes.py
index 1a60bb4107..b00e5e78f8 100644
--- a/python/tests/datatypes.py
+++ b/python/tests/datatypes.py
@@ -54,6 +54,19 @@ class SerialTest(TestCase):
d[serial(0)] = "zero"
assert d[0] == "zero"
+ def testAdd(self):
+ assert serial(2) + 2 == serial(4)
+ assert serial(2) + 2 == 4
+
+ def testSub(self):
+ delta = serial(4) - serial(2)
+ assert isinstance(delta, int) or isinstance(delta, long)
+ assert delta == 2
+
+ delta = serial(4) - 2
+ assert isinstance(delta, Serial)
+ assert delta == serial(2)
+
class RangedSetTest(TestCase):
def check(self, ranges):