Missing warning mock and fix for debug

This commit is contained in:
Juan Ignacio Sánchez Lara 2018-07-23 12:16:48 +02:00
parent 2862c80025
commit 1cebbe7af0

View File

@ -52,11 +52,14 @@ class MockPlPy:
self._logged_queries = []
self._log_executed_queries = True
def warning(self, msg):
self.warnings.append(msg)
def notice(self, msg):
self.notices.append(msg)
def debug(self, msg):
self.notices.append(msg)
self.debugs.append(msg)
def info(self, msg):
self.infos.append(msg)