2019-04-08 08:41:33 +02:00
|
|
|
"""just a multi unicode option
|
|
|
|
"""
|
2019-12-24 15:24:20 +01:00
|
|
|
from tiramisu.option import StrOption, OptionDescription
|
2019-04-08 08:41:33 +02:00
|
|
|
|
|
|
|
def get_description():
|
|
|
|
"""generate description for this test
|
|
|
|
"""
|
2019-12-24 15:24:20 +01:00
|
|
|
option = StrOption('unicode', "Unicode 1", properties=('mandatory',))
|
2019-04-08 08:41:33 +02:00
|
|
|
descr1 = OptionDescription("options", "Common configuration", [option])
|
|
|
|
descr = OptionDescription("unicode1_mandatory", "Mandatory unicode", [descr1])
|
|
|
|
return descr
|