2020-07-20 18:13:53 +02:00
|
|
|
from tiramisu import *
|
|
|
|
from rougail.tiramisu import ConvertDynOptionDescription
|
|
|
|
import imp
|
2020-08-08 08:58:35 +02:00
|
|
|
func = imp.load_source('func', 'tests/dictionaries/../eosfunc/test.py')
|
2020-07-29 08:59:40 +02:00
|
|
|
option_2 = OptionDescription(name='tata', doc='tata', children=[])
|
2020-07-30 09:37:19 +02:00
|
|
|
option_2.impl_set_information("manage", True)
|
2020-07-29 08:59:40 +02:00
|
|
|
option_1 = OptionDescription(name='services', doc='services', properties=frozenset({'hidden'}), children=[option_2])
|
2020-07-20 18:13:53 +02:00
|
|
|
option_0 = OptionDescription(name='baseoption', doc='baseoption', children=[option_1])
|