feat: configure Cargo.toml to include src/tests.rs in test suite

This commit is contained in:
Andrew Phillips (aider)
2025-05-12 11:37:26 -03:00
parent 4c1fbdbd64
commit 4b8e082179
2 changed files with 5 additions and 0 deletions

View File

@@ -3,6 +3,10 @@ name = "keep"
version = "0.1.0" version = "0.1.0"
edition = "2021" 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 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]

View File

@@ -292,3 +292,4 @@ mod tests {
}); });
} }
} }
mod tests;