Unittest - Say where taskd couldn't be found

This commit is contained in:
Renato Alves 2014-08-06 18:28:40 +01:00
parent 8ee02c8bac
commit 8a4b33b0e3

View file

@ -22,7 +22,8 @@ class TestCase(BaseTestCase):
@unittest.skipIf(TASKD_SKIP, "TASKD_SKIP set, skipping taskd tests.")
@unittest.skipIf(Taskd.not_available(), "Taskd binary not available")
@unittest.skipIf(Taskd.not_available(), "Taskd binary not available at '{0}'"
.format(Taskd.DEFAULT_TASKD))
class ServerTestCase(BaseTestCase):
"""Automatically skips tests if TASKD_SKIP is present in the environment
"""