10 lines
403 B
Python
10 lines
403 B
Python
from tiramisu.option import UsernameOption, OptionDescription
|
|
|
|
def get_description():
|
|
"""generate description for this test
|
|
"""
|
|
option = UsernameOption('username', "Username description frozen", properties=('frozen',))
|
|
descr1 = OptionDescription("options", "Common configuration", [option])
|
|
descr = OptionDescription("username1_frozen", "Simple username", [descr1])
|
|
return descr
|