From 1075ebf5f4edc0e988d85030f1707250aee482d4 Mon Sep 17 00:00:00 2001 From: Don Rowe Date: Mon, 3 Oct 2016 21:34:14 -0700 Subject: [PATCH] Add test for Display implementation for CompressionMethod --- src/compression.rs | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/compression.rs b/src/compression.rs index 4581bfbf..bd772413 100644 --- a/src/compression.rs +++ b/src/compression.rs @@ -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); + } + } }