Allow advancing the MockClock's time
parent
eef58a299e
commit
a6a9b71da0
|
@ -104,6 +104,10 @@ class MockClock(object):
|
||||||
def time_msec(self):
|
def time_msec(self):
|
||||||
return self.time() * 1000
|
return self.time() * 1000
|
||||||
|
|
||||||
|
# For unit testing
|
||||||
|
def advance_time(self, secs):
|
||||||
|
self.now += secs
|
||||||
|
|
||||||
|
|
||||||
class MemoryDataStore(object):
|
class MemoryDataStore(object):
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue