fix: configure tests to run by removing deprecated test config and adding missing import

Co-authored-by: aider (openai/andrew/openrouter/qwen/qwen3-coder) <aider@aider.chat>
This commit is contained in:
Andrew Phillips
2025-08-14 12:26:28 -03:00
parent 24d7c4742c
commit 2713f2b127
2 changed files with 1 additions and 3 deletions

View File

@@ -6,9 +6,6 @@ description = "Keep and manage temporary files with automatic compression and me
readme = "README.md" readme = "README.md"
categories = ["command-line-utilities"] categories = ["command-line-utilities"]
[[test]]
name = "tests"
path = "src/tests.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

@@ -3,6 +3,7 @@ mod tests {
use tempfile::TempDir; use tempfile::TempDir;
use std::fs::File; use std::fs::File;
use std::io::Write; use std::io::Write;
use std::path::PathBuf;
#[test] #[test]
fn test_info_mode_file_operations() { fn test_info_mode_file_operations() {