Expand description

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

§Example

use std::io::Read;

let mut reader = "bravo".as_bytes();
let value = String::from("alfa");
assert_io_read_to_string_ge_expr!(reader, &value);

§Module macros