12 lines
409 B
Python
12 lines
409 B
Python
"""just an unicode option
|
|
"""
|
|
from tiramisu.option import StrOption, OptionDescription
|
|
|
|
def get_description():
|
|
"""generate description for this test
|
|
"""
|
|
option = StrOption('unicode', "Unicode 1 frozen", properties=('frozen',))
|
|
descr1 = OptionDescription("options", "Common configuration", [option])
|
|
descr = OptionDescription("unicode1_frozen", "Simple unicode", [descr1])
|
|
return descr
|