2020-12-26 15:15:51 +01:00
|
|
|
from importlib.machinery import SourceFileLoader
|
2021-01-19 19:05:07 +01:00
|
|
|
from importlib.util import spec_from_loader, module_from_spec
|
|
|
|
loader = SourceFileLoader('func', 'tests/dictionaries/../eosfunc/test.py')
|
|
|
|
spec = spec_from_loader(loader.name, loader)
|
|
|
|
func = module_from_spec(spec)
|
|
|
|
loader.exec_module(func)
|
2020-12-26 15:15:51 +01:00
|
|
|
for key, value in dict(locals()).items():
|
|
|
|
if key != ['SourceFileLoader', 'func']:
|
|
|
|
setattr(func, key, value)
|
|
|
|
try:
|
|
|
|
from tiramisu3 import *
|
|
|
|
except:
|
|
|
|
from tiramisu import *
|
|
|
|
from rougail.tiramisu import ConvertDynOptionDescription
|
2021-01-24 10:17:01 +01:00
|
|
|
option_3 = StrOption(name='mode_conteneur_actif', doc='No change', default='non', properties=frozenset({'expert', 'mandatory'}))
|
2020-12-26 15:15:51 +01:00
|
|
|
option_2 = OptionDescription(name='general', doc='general', properties=frozenset({'expert'}), children=[option_3])
|
2021-01-24 10:17:01 +01:00
|
|
|
option_5 = ChoiceOption(name='enumvar', doc='multi', values=(None,), properties=frozenset({'expert', 'mandatory'}))
|
2020-12-26 15:15:51 +01:00
|
|
|
option_5.impl_set_information("help", "bla bla bla")
|
|
|
|
option_4 = OptionDescription(name='enumfam', doc='enumfam', properties=frozenset({'expert'}), children=[option_5])
|
|
|
|
option_1 = OptionDescription(name='rougail', doc='rougail', children=[option_2, option_4])
|
|
|
|
option_0 = OptionDescription(name='baseoption', doc='baseoption', children=[option_1])
|