From 4b8e0821796fbaf8be60a7a8b85b41e39ed17262 Mon Sep 17 00:00:00 2001 From: "Andrew Phillips (aider)" Date: Mon, 12 May 2025 11:37:26 -0300 Subject: [PATCH] feat: configure Cargo.toml to include src/tests.rs in test suite --- Cargo.toml | 4 ++++ src/tests.rs | 1 + 2 files changed, 5 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index f0ec80f..8bffc86 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,6 +3,10 @@ name = "keep" version = "0.1.0" edition = "2021" +[[test]] +name = "tests" +path = "src/tests.rs" + # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] diff --git a/src/tests.rs b/src/tests.rs index 2719ecf..6c3bd50 100644 --- a/src/tests.rs +++ b/src/tests.rs @@ -292,3 +292,4 @@ mod tests { }); } } +mod tests;