Skip to content

Commit

Permalink
Ajoute un test qui fail alors qu'il ne devrait pas
Browse files Browse the repository at this point in the history
  • Loading branch information
Allan-CodeWorks committed Dec 5, 2023
1 parent a13fdc5 commit 8bc8c85
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,12 @@ def add_profil_with_conditions(data: dict, profil: dict):

for type in profil_condition.keys():
if type in conditions_in_node_data:
raise NotImplementedError('Une aide avec deux profils de même type ne peux pas avoir de conditions de même type pour chacun de ses profils')
if type in ['age', 'quotient_familial', 'situation_handicap']:
operator = list(profil_condition[type].keys())[0]
if operator in conditions_in_node_data[type]:
raise NotImplementedError('Une aide avec deux profils de même type ne peux pas avoir de conditions de même type pour chacun de ses profils')
else:
raise NotImplementedError('Une aide avec deux profils de même type ne peux pas avoir de conditions de même type pour chacun de ses profils')

profil_condition.update(conditions_in_node_data)

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
label: "Carte Génération - Apprentis : aide au transport"
conditions_generales: []
profils:
- type: apprenti
conditions:
- type: age
operator: <
value: 26
- type: apprenti
conditions:
- type: age
operator: '>'
value: 27
type: float
montant: 200

0 comments on commit 8bc8c85

Please sign in to comment.