We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98a8326 commit 9afbad4Copy full SHA for 9afbad4
1 file changed
checkbox-ng/plainbox/impl/test_depmgr.py
@@ -124,6 +124,9 @@ def test_repr_resource(self):
124
observed = repr(self.exc_resource)
125
self.assertEqual(expected, observed)
126
127
+ def test_wrong_dep_type(self):
128
+ with self.assertRaises(ValueError):
129
+ DependencyMissingError(self.A, "B", "invalid")
130
131
class DependencyDuplicateErrorTests(TestCase):
132
0 commit comments