libcaesium/tests/cleanup.rs

8 lines
147 B
Rust
Raw 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();
}
2024-01-23 18:51:39 +01:00
}