Expand description

Assert a ::std::fs::read_to_string(path) value is equal to another.

Pseudocode:
std::fs::read_to_string(a_path) = std::fs::read_to_string(b_path)

§Example

use assertables::*;

let a ="alfa.txt";
let b = "alfa.txt";
assert_fs_read_to_string_eq!(&a, &b);

§Module macros