deb-python-crank/tests/test_dispatcher.py
2010-03-13 01:52:06 -05:00

16 lines
289 B
Python

from nose.tools import raises
from crank.dispatcher import *
class TestDispatcher:
def setup(self):
self.dispatcher = Dispatcher()
def test_create(self):
pass
@raises(NotImplementedError)
def test_dispatch(self):
self.dispatcher._dispatch(1,2)