Adds functional tests for librabbitmq transport

This commit is contained in:
Ask Solem 2013-04-22 15:23:53 +01:00
parent 523cbd2fb4
commit 6642d85ebf
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
from nose import SkipTest
from funtests import transport
class test_librabbitmq(transport.TransportCase):
transport = 'librabbitmq'
prefix = 'librabbitmq'
def before_connect(self):
try:
import librabbitmq # noqa
except ImportError:
raise SkipTest('librabbitmq not installed')