elrond-wasm-debug 0.38.0

Elrond WebAssembly smart contract API debugging mocks and utils
Documentation
use elrond_wasm_debug::*;

fn world() -> BlockchainMock {
    BlockchainMock::new()
}

#[test]
fn local_path_test() {
    elrond_wasm_debug::mandos_rs("tests/mandos-self/path_test.scen.json", world());
}

#[test]
fn nested_path_test() {
    elrond_wasm_debug::mandos_rs(
        "tests/mandos-self/external_steps/external_path_test.scen.json",
        world(),
    );
}