Expand description

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

§Example

use std::io::Read;

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

§Module macros