Expand description
Git Interactive Rebase Tool - Test Utils
§Description
To facilitate testing the usages of this project, this crate contains a set of testing utilities. These utilities are not tested, are often optimized for developer experience, rather than performance, and should only be used in test code.
Macros§
- assert_
empty - Asserts that expression is empty using
is_empty
. - assert_
err_ eq - Asserts that expression returns
Err(E)
variant and its value ofE
type equals to the right expression. - assert_
not_ empty - Asserts that expression is not empty using
is_empty
. - debug_
assert_ empty - Asserts that expression is empty using
is_empty
. - debug_
assert_ err_ eq - Asserts that expression returns
Err(E)
variant in runtime. - debug_
assert_ not_ empty - Asserts that expression is not empty using
is_empty
.