-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* #146 Implement transitions alias * remove unnecesarry handlers * #146 Adjust tests for transitions atlas * #146 Adjust tests for ontransitions * Revert " #146 Adjust tests for ontransitions" This reverts commit 9a4a4e9 * #146 Fix line endings * #146 Fix line endings Co-authored-by: filip.kowalski <[email protected]>
- Loading branch information
1 parent
31b184f
commit 64ed7bd
Showing
5 changed files
with
60 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
task/factory/default/src/test/resources/conf/taskWithTransitions-alias.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# node & transitions | ||
action = a | ||
on { | ||
_success { | ||
action = b | ||
} | ||
} |
12 changes: 12 additions & 0 deletions
12
task/factory/default/src/test/resources/conf/taskWithTransitionsAndAlias.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# node & transitions | ||
action = a | ||
on { | ||
_success { | ||
action = b | ||
} | ||
} | ||
onTransitions { | ||
_error { | ||
action = b | ||
} | ||
} |