Module assertables::assert_ends_with

source ·
Expand description

Assert an expression (such as a string) ends with an expression (such as a string).

§Example


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

§Module macros