Expand description

Assert a std::fs::read_to_string(path) value is less than an expression.

Pseudocode:
std::fs::read_to_string(path) < expr

§Example

use assertables::*;
let path = "alfa.txt";
let value = String::from("bravo\n");
assert_fs_read_to_string_lt_expr!(&path, &value);

§Module macros