refactoring
This commit is contained in:
@ -6,8 +6,8 @@
|
||||
<variable doc="No change" multi="True" name="varname" type="string">
|
||||
<property>mandatory</property>
|
||||
<property>normal</property>
|
||||
<value>val1</value>
|
||||
<value>val2</value>
|
||||
<value type="string">val1</value>
|
||||
<value type="string">val2</value>
|
||||
</variable>
|
||||
</family>
|
||||
<family dynamic="rougail.general.varname" doc="dyn" name="dyn">
|
||||
@ -15,7 +15,7 @@
|
||||
<variable doc="No change" multi="False" name="vardyn" type="string">
|
||||
<property>mandatory</property>
|
||||
<property>normal</property>
|
||||
<value>val</value>
|
||||
<value type="string">val</value>
|
||||
</variable>
|
||||
</family>
|
||||
<family doc="new" name="new">
|
||||
@ -24,7 +24,7 @@
|
||||
<property>mandatory</property>
|
||||
<property>normal</property>
|
||||
<value name="calc_val" type="calculation">
|
||||
<param suffix="val1" transitive="False" type="variable">rougail.dyn.vardyn</param>
|
||||
<param notraisepropertyerror="False" suffix="val1" type="variable">rougail.dyn.vardyn</param>
|
||||
</value>
|
||||
</variable>
|
||||
</family>
|
||||
|
12
tests/flattener_dicos/20family_dynamic_calc/tiramisu/base.py
Normal file
12
tests/flattener_dicos/20family_dynamic_calc/tiramisu/base.py
Normal 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 = StrOption(properties=frozenset(['mandatory', 'normal']), doc='No change', multi=True, name='varname', default=['val1', 'val2'], default_multi='val2')
|
||||
option_2 = OptionDescription(doc='general', name='general', properties=frozenset(['normal']), children=[option_3])
|
||||
option_5 = StrOption(properties=frozenset(['mandatory', 'normal']), doc='No change', multi=False, name='vardyn', default='val')
|
||||
option_4 = ConvertDynOptionDescription(suffixes=Calculation(func.calc_value, Params((ParamOption(option_3)))), doc='dyn', name='dyn', properties=frozenset(['normal']), children=[option_5])
|
||||
option_7 = StrOption(properties=frozenset(['mandatory', 'normal']), doc='No change', multi=False, name='newvar', default=Calculation(func.calc_val, Params((ParamDynOption(option_5, 'val1', option_4, notraisepropertyerror=False, todict=False)), kwargs={})))
|
||||
option_6 = OptionDescription(doc='new', name='new', properties=frozenset(['normal']), children=[option_7])
|
||||
option_1 = OptionDescription(doc='rougail', name='rougail', children=[option_2, option_4, option_6])
|
||||
option_0 = OptionDescription(name='baseoption', doc='baseoption', children=[option_1])
|
Reference in New Issue
Block a user