pub fn assert_eq(expected: impl Into<Data>, actual: impl Into<Data>)
Expand description

Check if a value is the same as an expected value

When the content is text, newlines are normalized.

let output = "something";
let expected = "something";
snapbox::assert_matches(expected, output);