Allow advancing the MockClock's time

This commit is contained in:
Paul "LeoNerd" Evans 2014-08-13 19:17:30 +01:00
parent eef58a299e
commit a6a9b71da0

View file

@ -104,6 +104,10 @@ class MockClock(object):
def time_msec(self):
return self.time() * 1000
# For unit testing
def advance_time(self, secs):
self.now += secs
class MemoryDataStore(object):