11 lines
397 B
Python
11 lines
397 B
Python
|
|
from tiramisu.option import ChoiceOption, OptionDescription
|
|
|
|
def get_description():
|
|
"""generate description for this test
|
|
"""
|
|
option = ChoiceOption('choice', "Choice description", ("choice 1", "choice 2"), multi=True)
|
|
descr1 = OptionDescription("options", "Common configuration", [option])
|
|
descr = OptionDescription("choice1_multi", "Multi choice", [descr1])
|
|
return descr
|