exc: Test ScannerError

This commit is contained in:
Stein Magnus Jodal 2014-07-09 22:15:45 +02:00
parent 395019e857
commit 8f59dd69ad

View File

@ -15,3 +15,7 @@ class ExceptionsTest(unittest.TestCase):
def test_extension_error_is_a_mopidy_exception(self):
self.assert_(issubclass(
exceptions.ExtensionError, exceptions.MopidyException))
def test_scanner_error_is_a_mopidy_exception(self):
self.assert_(issubclass(
exceptions.ScannerError, exceptions.MopidyException))