20 lines
574 B
Python
20 lines
574 B
Python
"""just an unicode option
|
|
"""
|
|
from tiramisu.option import UnicodeOption, OptionDescription
|
|
|
|
def get_description():
|
|
"""generate description for this test
|
|
"""
|
|
option = UnicodeOption('unicode', "Expert unicode")
|
|
descr1 = OptionDescription("options", "Common configuration", [option], properties=('expert',))
|
|
descr = OptionDescription("unicode_property_optiondescription", "OptionDescription hidden because expert", [descr1])
|
|
return descr
|
|
|
|
|
|
def get_permissives():
|
|
return frozenset(['expert'])
|
|
|
|
|
|
def get_properties():
|
|
return frozenset(['expert'])
|