Skip to content

Commit

Permalink
#17 Test exception handling of handle().
Browse files Browse the repository at this point in the history
  • Loading branch information
OrangeTux committed Dec 5, 2015
1 parent 94917bc commit 1719feb
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions tests/unit/test_server.py
@@ -0,0 +1,16 @@
""" The module umodbus.server is mainly covered through system tests. Only
those parts which can't be tested by system tests should be tested using
unit tests.
"""
import pytest

from umodbus.server import RequestHandler


def test_handle_raising_exception():
""" Test tests RequestHandler.handle() which is called when an instance
of RequestHandler is created. This method should reraise exception if one
occurs.
"""
with pytest.raises(AttributeError):
RequestHandler(None, None, None)

0 comments on commit 1719feb

Please sign in to comment.