remove group constrainte, it's now a normal group
This commit is contained in:
18
tests/dictionaries_old/10check_base/00-base.xml
Normal file
18
tests/dictionaries_old/10check_base/00-base.xml
Normal file
@ -0,0 +1,18 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<rougail version="0.9">
|
||||
<variables>
|
||||
<family name="general">
|
||||
<variable name="mode_conteneur_actif" type="string" description="No change">
|
||||
<value>b</value>
|
||||
</variable>
|
||||
<variable name="int" type="number" description="No change"/>
|
||||
</family>
|
||||
</variables>
|
||||
<constraints>
|
||||
<check name="valid_entier">
|
||||
<param name="mini" type="number">0</param>
|
||||
<param name="maxi" type="number">100</param>
|
||||
<target>int</target>
|
||||
</check>
|
||||
</constraints>
|
||||
</rougail>
|
0
tests/dictionaries_old/10check_base/__init__.py
Normal file
0
tests/dictionaries_old/10check_base/__init__.py
Normal file
10
tests/dictionaries_old/10check_base/makedict/after.json
Normal file
10
tests/dictionaries_old/10check_base/makedict/after.json
Normal file
@ -0,0 +1,10 @@
|
||||
{
|
||||
"rougail.general.mode_conteneur_actif": {
|
||||
"owner": "default",
|
||||
"value": "b"
|
||||
},
|
||||
"rougail.general.int": {
|
||||
"owner": "default",
|
||||
"value": null
|
||||
}
|
||||
}
|
4
tests/dictionaries_old/10check_base/makedict/base.json
Normal file
4
tests/dictionaries_old/10check_base/makedict/base.json
Normal file
@ -0,0 +1,4 @@
|
||||
{
|
||||
"rougail.general.mode_conteneur_actif": "b",
|
||||
"rougail.general.int": null
|
||||
}
|
10
tests/dictionaries_old/10check_base/makedict/before.json
Normal file
10
tests/dictionaries_old/10check_base/makedict/before.json
Normal file
@ -0,0 +1,10 @@
|
||||
{
|
||||
"rougail.general.mode_conteneur_actif": {
|
||||
"owner": "default",
|
||||
"value": "b"
|
||||
},
|
||||
"rougail.general.int": {
|
||||
"owner": "default",
|
||||
"value": null
|
||||
}
|
||||
}
|
18
tests/dictionaries_old/10check_base/tiramisu/base.py
Normal file
18
tests/dictionaries_old/10check_base/tiramisu/base.py
Normal file
@ -0,0 +1,18 @@
|
||||
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_3 = StrOption(name="mode_conteneur_actif", doc="No change", default="b", properties=frozenset({"mandatory", "normal"}))
|
||||
option_4 = IntOption(name="int", doc="No change", min_number=0, max_number=100, properties=frozenset({"normal"}))
|
||||
option_2 = OptionDescription(name="general", doc="general", children=[option_3, option_4], properties=frozenset({"normal"}))
|
||||
option_1 = OptionDescription(name="rougail", doc="rougail", children=[option_2])
|
||||
option_0 = OptionDescription(name="baseoption", doc="baseoption", children=[option_1])
|
Reference in New Issue
Block a user