Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This PR intends to give a way to build custom `DesmosKeeper` for tests by having a new trait `DesmosModule`. ```rust pub struct CustomDesmosKeeper {} impl DesmosModule for CustomDesmosKeeper { // custom handle functions } #[test] fn test_something() -> { let mut app = custom_desmos_app(CustomDesmosKeeper{}, |_, _, _| {}); // test with custom mock app ... } ``` After CosmWasm/cw-plus#773 is released, it can be merged.
- Loading branch information