52 lines
523 B
Python
52 lines
523 B
Python
from time import sleep
|
|
|
|
|
|
def test_gamma0():
|
|
sleep(5)
|
|
assert True
|
|
|
|
|
|
def test_gamma1():
|
|
sleep(5)
|
|
assert True
|
|
|
|
|
|
def test_gamma2():
|
|
sleep(5)
|
|
assert True
|
|
|
|
|
|
def test_gamma3():
|
|
sleep(5)
|
|
assert True
|
|
|
|
|
|
def test_gamma4():
|
|
sleep(5)
|
|
assert True
|
|
|
|
|
|
def test_gamma5():
|
|
sleep(5)
|
|
assert True
|
|
|
|
|
|
def test_gamma6():
|
|
sleep(5)
|
|
assert True
|
|
|
|
|
|
def test_gamma7():
|
|
sleep(5)
|
|
assert True
|
|
|
|
|
|
def test_gamma8():
|
|
sleep(5)
|
|
assert True
|
|
|
|
|
|
def test_gamma9():
|
|
sleep(5)
|
|
assert True
|