Expand description

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

§Example

use std::io::Read;

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

§Module macros