13 lines
374 B
Python
13 lines
374 B
Python
"""just an boolean option
|
|
"""
|
|
from tiramisu.option import BoolOption, OptionDescription
|
|
|
|
def get_description():
|
|
"""generate description for this test
|
|
"""
|
|
option = BoolOption('boolean', "Boolean 1")
|
|
descr1 = OptionDescription("options", "Common configuration", [option])
|
|
descr = OptionDescription("boolean1", "Simple boolean", [descr1])
|
|
return descr
|
|
|