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', "String 1", ['a', 'b'], multi=True)
|
2019-04-08 08:41:33 +02:00
|
|
|
descr1 = OptionDescription("options", "Common configuration", [option])
|
|
|
|
descr = OptionDescription("unicode1_multi_value", "Multi unicode with default value 'a' and 'b'", [descr1])
|
|
|
|
return descr
|
|
|
|
|