remove group constrainte, it's now a normal group
This commit is contained in:
13
tests/dictionaries_old/45multi_family_order/00-base.xml
Normal file
13
tests/dictionaries_old/45multi_family_order/00-base.xml
Normal file
@ -0,0 +1,13 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<rougail version="0.9">
|
||||
<variables>
|
||||
<variable name="variable1"/>
|
||||
<family name="base">
|
||||
<variable name="variable2"/>
|
||||
<family name="subfamily">
|
||||
<variable name="variable3"/>
|
||||
</family>
|
||||
<variable name="variable4"/>
|
||||
</family>
|
||||
</variables>
|
||||
</rougail>
|
@ -0,0 +1,18 @@
|
||||
{
|
||||
"rougail.variable1": {
|
||||
"owner": "default",
|
||||
"value": null
|
||||
},
|
||||
"rougail.base.variable2": {
|
||||
"owner": "default",
|
||||
"value": null
|
||||
},
|
||||
"rougail.base.subfamily.variable3": {
|
||||
"owner": "default",
|
||||
"value": null
|
||||
},
|
||||
"rougail.base.variable4": {
|
||||
"owner": "default",
|
||||
"value": null
|
||||
}
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
{
|
||||
"rougail.variable1": null,
|
||||
"rougail.base.variable2": null,
|
||||
"rougail.base.subfamily.variable3": null,
|
||||
"rougail.base.variable4": null
|
||||
}
|
@ -0,0 +1,18 @@
|
||||
{
|
||||
"rougail.variable1": {
|
||||
"owner": "default",
|
||||
"value": null
|
||||
},
|
||||
"rougail.base.variable2": {
|
||||
"owner": "default",
|
||||
"value": null
|
||||
},
|
||||
"rougail.base.subfamily.variable3": {
|
||||
"owner": "default",
|
||||
"value": null
|
||||
},
|
||||
"rougail.base.variable4": {
|
||||
"owner": "default",
|
||||
"value": null
|
||||
}
|
||||
}
|
21
tests/dictionaries_old/45multi_family_order/tiramisu/base.py
Normal file
21
tests/dictionaries_old/45multi_family_order/tiramisu/base.py
Normal file
@ -0,0 +1,21 @@
|
||||
from importlib.machinery import SourceFileLoader
|
||||
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)
|
||||
for key, value in dict(locals()).items():
|
||||
if key != ['SourceFileLoader', 'func']:
|
||||
setattr(func, key, value)
|
||||
try:
|
||||
from tiramisu3 import *
|
||||
except:
|
||||
from tiramisu import *
|
||||
option_2 = StrOption(name="variable1", doc="variable1", properties=frozenset({"normal"}))
|
||||
option_4 = StrOption(name="variable2", doc="variable2", properties=frozenset({"normal"}))
|
||||
option_6 = StrOption(name="variable3", doc="variable3", properties=frozenset({"normal"}))
|
||||
option_5 = OptionDescription(name="subfamily", doc="subfamily", children=[option_6], properties=frozenset({"normal"}))
|
||||
option_7 = StrOption(name="variable4", doc="variable4", properties=frozenset({"normal"}))
|
||||
option_3 = OptionDescription(name="base", doc="base", children=[option_4, option_5, option_7], properties=frozenset({"normal"}))
|
||||
option_1 = OptionDescription(name="rougail", doc="rougail", children=[option_2, option_3])
|
||||
option_0 = OptionDescription(name="baseoption", doc="baseoption", children=[option_1])
|
Reference in New Issue
Block a user