Expand description

Assert a ::std::fs::read_to_string(path) value is greater than or equal to an expression.

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

§Example

use assertables::*;

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

§Module macros