summaryrefslogtreecommitdiff
path: root/tests/testutils/gbplogtester.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testutils/gbplogtester.py')
-rw-r--r--tests/testutils/gbplogtester.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/testutils/gbplogtester.py b/tests/testutils/gbplogtester.py
index 2f2f43e..9a54f02 100644
--- a/tests/testutils/gbplogtester.py
+++ b/tests/testutils/gbplogtester.py
@@ -37,6 +37,11 @@ class GbpLogTester(object):
self._log.seek(0)
return self._log.readlines()
+ def _check_log_empty(self):
+ """Check that nothig was logged"""
+ output = self._get_log()
+ ok_(output == [], "Log is not empty: %s" % output)
+
def _check_log(self, linenum, regex):
"""Check that the specified line on log matches expectations"""
if self._log is None: