xmr-btc-swap/swap/tests/happy_path.rs

20 lines
475 B
Rust
Raw Normal View History

pub mod testutils;
use swap::protocol::bob;
use testutils::SlowCancelConfig;
2020-12-14 06:24:23 +00:00
/// Run the following tests with RUST_MIN_STACK=10000000
#[tokio::test]
async fn happy_path() {
2021-01-29 02:52:05 +00:00
testutils::setup_test(SlowCancelConfig, |mut ctx| async move {
let (bob_swap, _) = ctx.new_swap_as_bob().await;
let bob_state = bob::run(bob_swap).await;
ctx.assert_alice_redeemed().await;
ctx.assert_bob_redeemed(bob_state.unwrap()).await;
})
2020-12-14 06:24:23 +00:00
.await;
}