From 8f59dd69adca2e6c1595159e5350bf5a4e69988f Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Wed, 9 Jul 2014 22:15:45 +0200 Subject: [PATCH] exc: Test ScannerError --- tests/test_exceptions.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/test_exceptions.py b/tests/test_exceptions.py index da8fed90..3452a06b 100644 --- a/tests/test_exceptions.py +++ b/tests/test_exceptions.py @@ -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))