[][src]Macro rye::skip

macro_rules! skip {
    ( $ctx:ident ) => { ... };
    ( $ctx:ident, $($arg:tt)+ ) => { ... };
}

Mark the current test case as skipped and then terminate its execution.

This macro can usually be used to disable some test cases that may not success depending on the runtime context, such as network access or a certain secret variables is not set.