aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/component/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/component/__init__.py')
-rw-r--r--tests/component/__init__.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/component/__init__.py b/tests/component/__init__.py
index 240b721d..4ef22563 100644
--- a/tests/component/__init__.py
+++ b/tests/component/__init__.py
@@ -21,6 +21,7 @@ Module for testing individual command line tools of the git-buildpackage suite
"""
import os
+import re
import shutil
import tempfile
from StringIO import StringIO
@@ -165,13 +166,13 @@ class ComponentTestBase(object):
self._log.seek(0)
return self._log.readlines()
- def _check_log(self, linenum, string):
+ def _check_log(self, linenum, regex):
"""Check that the specified line on log matches expectations"""
if self._log is None:
raise Exception("BUG in unittests: no log captured!")
output = self._get_log()[linenum].strip()
- ok_(output.startswith(string), ("Expected: '%s...' Got: '%s'" %
- (string, output)))
+ ok_(re.match(regex, output),
+ "Log entry '%s' doesn't match '%s'" % (output, regex))
def _clear_log(self):
"""Clear the mock strerr"""