~ubuntu-branches/ubuntu/precise/pyzmq/precise

« back to all changes in this revision

Viewing changes to zmq/tests/test_multipart.py

  • Committer: Package Import Robot
  • Author(s): Julian Taylor, Julian Taylor
  • Date: 2012-02-19 14:53:20 UTC
  • mfrom: (1.1.6)
  • mto: This revision was merged to the branch mainline in revision 9.
  • Revision ID: package-import@ubuntu.com-20120219145320-u8un3j0q1e82dx01
[ Julian Taylor ]
* New upstream release (Closes: #655793)
* added myself to Uploaders
* properly clean to allow building twice in a row
* ignore testsuite result due to random failures on armel and mips
  probably caused by libzmq or toolchain
* add Python3 to short description of py3 packages
* wrap-and-sort debian/
* add python-nose to build depends to get better test result output
* add python-numpy to build depends to get more tests
* use githubredir.debian.net in debian/watch

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
class TestMultipart(BaseZMQTestCase):
34
34
 
35
35
    def test_router_dealer(self):
36
 
        if zmq.zmq_version() >= '4.0.0':
37
 
            raise SkipTest("ROUTER/DEALER change in 4.0")
38
36
        router, dealer = self.create_bound_pair(zmq.ROUTER, zmq.DEALER)
39
37
 
40
38
        msg1 = asbytes('message1')