exc: Test ScannerError

(cherry picked from commit 8f59dd69ad)
This commit is contained in:
Stein Magnus Jodal 2014-07-09 22:15:45 +02:00
parent 2177550649
commit 7e489ccb0b

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))