Skip to content

Commit

Permalink
Allow side_effect to have parameters
Browse files Browse the repository at this point in the history
Fix #3729
  • Loading branch information
ehartmann committed Nov 8, 2022
1 parent 6100f55 commit 2be6533
Showing 1 changed file with 2 additions and 17 deletions.
19 changes: 2 additions & 17 deletions src/molecule/data/molecule.json
Original file line number Diff line number Diff line change
Expand Up @@ -457,24 +457,9 @@
"type": "object"
},
"ScenarioSequence": {
"additionalProperties": false,
"items": {
"enum": [
"check",
"cleanup",
"converge",
"create",
"dependency",
"destroy",
"idempotence",
"lint",
"prepare",
"side_effect",
"syntax",
"test",
"verify"
],
"type": "string"
"type": "string",
"pattern": "(^check$)|(^cleanup$)|(^converge$)|(^create$)|(^dependency$)|(^destroy$)|(^idempotence$)|(^lint$)|(^prepare$)|(^side_effect .*$)|(^syntax$)|(^test$)|(^verify$)"
},
"title": "ScenarioSequence",
"type": "array"
Expand Down

0 comments on commit 2be6533

Please sign in to comment.