Add test for Display implementation for CompressionMethod

This commit is contained in:
Don Rowe 2016-10-03 21:34:14 -07:00
parent a63b7315d0
commit 1075ebf5f4

View file

@ -85,4 +85,17 @@ mod test {
check_match(method);
}
}
#[test]
fn to_display_fmt() {
fn check_match(method: CompressionMethod) {
let debug_str = format!("{:?}", method);
let display_str = format!("{}", method);
assert_eq!(debug_str, display_str);
}
for method in methods() {
check_match(method);
}
}
}