Skip test of mock_xqueue_server

This commit is contained in:
Will Daly
2013-03-28 09:13:28 -04:00
parent 3eefb7d5ec
commit c48f119cec

View File

@@ -7,6 +7,8 @@ import urlparse
import time
from mock_xqueue_server import MockXQueueServer, MockXQueueRequestHandler
from nose.plugins.skip import SkipTest
class MockXQueueServerTest(unittest.TestCase):
'''
@@ -22,6 +24,11 @@ class MockXQueueServerTest(unittest.TestCase):
def setUp(self):
# This is a test of the test setup,
# so it does not need to run as part of the unit test suite
# You can re-enable it by commenting out the line below
raise SkipTest
# Create the server
server_port = 8034
self.server_url = 'http://127.0.0.1:%d' % server_port