Module lib::assert_not_ends_with

source ·
Expand description

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

§Example


let a = "foogoo";
let b = "foo";
assert_not_ends_with!(a, b);

§Module macros