9 lines
162 B
Python
9 lines
162 B
Python
import time
|
|
from autotest_lib.client.bin import test
|
|
|
|
class sleeptest(test.test):
|
|
version = 1
|
|
|
|
def run_once(self, seconds=1):
|
|
time.sleep(seconds)
|