-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update action test framework to be more generic and add epochs_delete
- Loading branch information
1 parent
18ed5bd
commit d60faa6
Showing
4 changed files
with
70 additions
and
18 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
from meggie.utilities.testing import BaseTestAction | ||
from meggie.actions.epochs_delete import DeleteEpochs | ||
|
||
|
||
class TestEpochsDelete(BaseTestAction): | ||
def test_epochs_delete(self): | ||
|
||
data = {"outputs": {"epochs": ["Epochs"]}} | ||
|
||
self.run_action( | ||
action_name="epochs_delete", | ||
handler=DeleteEpochs, | ||
data=data, | ||
patch_paths=["meggie.actions.epochs_delete"], | ||
) |
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