Add sleep to test runner

This commit is contained in:
Thomas Jackson 2014-12-31 16:40:30 -08:00
parent 2251f56692
commit b58bf7daac

View File

@ -44,6 +44,15 @@ def stdout_print():
print ('foo')
return 'bar'
def sleep(s_time=10):
'''
Sleep t seconds, then return True
'''
print (s_time)
time.sleep(s_time)
return True
def stream():
'''
Return True