blob: c9c9f38603c18a978cd6cebc690ac79ea192c8eb [file] [log] [blame]
#[test]
fn test_basic_suffixes() {
for value in [1, 2, 3] {
insta::with_settings!({snapshot_suffix => value.to_string()}, {
insta::assert_json_snapshot!(&value);
});
}
}