refactoring

This commit is contained in:
2020-07-20 18:13:53 +02:00
parent 05ca7ed578
commit 17e09354fa
584 changed files with 2532 additions and 833 deletions

View File

@ -16,7 +16,7 @@
<variable doc="follower1" multi="False" name="follower1" type="string">
<property>mandatory</property>
<property>normal</property>
<value>value</value>
<value type="string">value</value>
</variable>
<variable doc="follower2" multi="False" name="follower2" type="string">
<property>normal</property>

View File

@ -0,0 +1,12 @@
from tiramisu import *
from rougail.tiramisu import ConvertDynOptionDescription
import imp
func = imp.load_source('func', 'tests/flattener_dicos/../eosfunc/test.py')
option_3 = ChoiceOption(properties=frozenset(['mandatory', 'normal']), doc='leader', multi=True, name='mode_conteneur_actif', default=['non'], default_multi='non', values=('oui', 'non'))
option_5 = StrOption(properties=frozenset([]), doc='leader', multi=True, name='leader')
option_6 = StrOption(properties=frozenset(['mandatory', 'normal']), doc='follower1', multi=True, name='follower1', default_multi='value')
option_7 = StrOption(properties=frozenset(['normal']), doc='follower2', multi=True, name='follower2')
option_4 = Leadership(doc='leader', name='leader', properties=frozenset(['normal']), children=[option_5, option_6, option_7])
option_2 = OptionDescription(doc='general', name='general', properties=frozenset(['normal']), children=[option_3, option_4])
option_1 = OptionDescription(doc='rougail', name='rougail', children=[option_2])
option_0 = OptionDescription(name='baseoption', doc='baseoption', children=[option_1])