Macro hypothetically_ok
macro_rules! hypothetically_ok {
($e:expr $(, $args:expr)* $(,)?) => { ... };
}
Expand description
Other helper macros from frame_support
that help with asserting in tests.
Assert something to be hypothetically Ok
, without actually committing it.
Reverts any storage changes made by the closure.