Add test for Display implementation for CompressionMethod
This commit is contained in:
parent
a63b7315d0
commit
1075ebf5f4
1 changed files with 13 additions and 0 deletions
|
@ -85,4 +85,17 @@ mod test {
|
||||||
check_match(method);
|
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);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue