rust-clippy/tests/ui/tests_outside_test_module.rs

18 lines
227 B
Rust
Raw Normal View History

2023-03-24 21:39:26 +00:00
#![allow(unused)]
#![warn(clippy::tests_outside_test_module)]
fn main() {
// test code goes here
}
// Should lint
#[test]
fn my_test() {}
#[cfg(test)]
mod tests {
// Should not lint
#[test]
fn my_test() {}
}