Simplify test code of compression
This commit is contained in:
parent
256da313b4
commit
57c8444d8e
1 changed files with 5 additions and 16 deletions
|
@ -65,25 +65,14 @@ mod test {
|
|||
}
|
||||
}
|
||||
|
||||
#[cfg(all(not(feature = "bzip2"), feature = "deflate"))]
|
||||
fn methods() -> Vec<CompressionMethod> {
|
||||
vec![CompressionMethod::Stored, CompressionMethod::Deflated]
|
||||
let mut methods = Vec::new();
|
||||
methods.push(CompressionMethod::Stored);
|
||||
#[cfg(feature="deflate")] methods.push(CompressionMethod::Deflated);
|
||||
#[cfg(feature="bzip2")] methods.push(CompressionMethod::Bzip2);
|
||||
methods
|
||||
}
|
||||
|
||||
#[cfg(all(not(feature = "deflate"), feature = "bzip2"))]
|
||||
fn methods() -> Vec<CompressionMethod> {
|
||||
vec![CompressionMethod::Stored, CompressionMethod::Bzip2]
|
||||
}
|
||||
|
||||
#[cfg(all(feature = "bzip2", feature = "deflate"))]
|
||||
fn methods() -> Vec<CompressionMethod> {
|
||||
vec![CompressionMethod::Stored, CompressionMethod::Deflated, CompressionMethod::Bzip2]
|
||||
}
|
||||
|
||||
#[cfg(all(not(feature = "bzip2"), not(feature = "deflate")))]
|
||||
fn methods() -> Vec<CompressionMethod> {
|
||||
vec![CompressionMethod::Stored]
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn to_eq_from() {
|
||||
|
|
Loading…
Add table
Reference in a new issue