libcaesium/tests/cleanup.rs

7 lines
146 B
Rust
Raw Permalink Normal View History

2023-02-25 20:39:52 +01:00
use std::fs;
pub fn remove_compressed_test_file(file: &str) {
if fs::metadata(file).is_ok() {
fs::remove_file(file).unwrap();
}
}