52 lines
523 B
Python
52 lines
523 B
Python
from time import sleep
|
|
|
|
|
|
def test_alpha0():
|
|
sleep(5)
|
|
assert True
|
|
|
|
|
|
def test_alpha1():
|
|
sleep(5)
|
|
assert True
|
|
|
|
|
|
def test_alpha2():
|
|
sleep(5)
|
|
assert True
|
|
|
|
|
|
def test_alpha3():
|
|
sleep(5)
|
|
assert True
|
|
|
|
|
|
def test_alpha4():
|
|
sleep(5)
|
|
assert True
|
|
|
|
|
|
def test_alpha5():
|
|
sleep(5)
|
|
assert True
|
|
|
|
|
|
def test_alpha6():
|
|
sleep(5)
|
|
assert True
|
|
|
|
|
|
def test_alpha7():
|
|
sleep(5)
|
|
assert True
|
|
|
|
|
|
def test_alpha8():
|
|
sleep(5)
|
|
assert True
|
|
|
|
|
|
def test_alpha9():
|
|
sleep(5)
|
|
assert True
|