[svn r52707] Allow some mocking.

--HG--
branch : trunk
This commit is contained in:
fijal 2008-03-18 21:57:43 +01:00
parent 26ba6d9034
commit a700c261ef
1 changed files with 5 additions and 2 deletions

View File

@ -49,12 +49,15 @@ class TestReporter(object):
return self.flag
class AbstractReporter(object):
def __init__(self, config, hosts):
def __init__(self, config, hosts, out=None):
self.config = config
self.hosts = hosts
self.failed_tests_outcome = []
self.skipped_tests_outcome = []
if out is None:
self.out = getout(py.std.sys.stdout)
else:
self.out = out
self.presenter = Presenter(self.out, config)
self.to_rsync = {}