test-with 0.16.1

A library that helps you run tests with conditions
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[tokio::main]
async fn main() {}

#[cfg(test)]
mod tokio_tests {
    #[test_with::env(NOTHING)]
    #[tokio::test]
    async fn my_test() {
        assert!(false);
    }
}