2019-12-24 15:24:20 +01:00
|
|
|
from tiramisu.option import StrOption, OptionDescription
|
2019-04-08 08:41:33 +02:00
|
|
|
from tiramisu import Leadership
|
|
|
|
|
|
|
|
|
|
|
|
def get_description():
|
|
|
|
"""generate description for this test
|
|
|
|
"""
|
2019-12-24 15:24:20 +01:00
|
|
|
option = StrOption('unicode', "Value 'test' must show Leadership")
|
|
|
|
option1 = StrOption('unicode1', "Unicode leader", multi=True)
|
|
|
|
option2 = StrOption('unicode2', "Unicode follower 1", multi=True)
|
|
|
|
option3 = StrOption('unicode3', "Unicode follower 2", multi=True)
|
2019-04-08 08:41:33 +02:00
|
|
|
descr1 = Leadership("unicode1", "Common configuration",
|
|
|
|
[option1, option2, option3], requires=[{'option': option,
|
|
|
|
'expected': u'test',
|
|
|
|
'action': 'hidden',
|
|
|
|
'inverse': True}])
|
|
|
|
descr = OptionDescription("options", "Common configuration", [option, descr1])
|
|
|
|
descr = OptionDescription("unicode1_leadership_requires_all", "Leader follower with requirement", [descr])
|
|
|
|
return descr
|