Module lib::assert_not_starts_with

source ·
Expand description

Assert an expression (such as a string) does not start with an expression (such as a string).

§Example


let a = "foogoo";
let b = "goo";
assert_not_starts_with!(a, b);

§Module macros