1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
fn main() {}
#[cfg(test)]
mod tests {
#[test_with::env(PWD)]
fn test_works() {
assert!(true);
}
#[test_with::env(NOTHING)]
#[test]
fn test_ignored() {
panic!("should be ignored")
}
#[test_with::env(PWD, SAYING)]
#[test]
fn test_works_too() {
assert!(true);
}
#[test_with::env(PWD, NOT_SAYING)]
#[test]
fn test_ignored_too() {
panic!("should be ignored")
}
#[test_with::no_env(GITHUB_ACTIONS)]
#[test]
fn test_ignore_in_github_action() {
println!("should be ignored in GITHUB_ACTION");
}
#[test_with::env(
IT_SOME_LONG_ENV_VAR_NAME_TEST_URL,
IT_SOME_LONG_ENV_VAR_NAME_TEST_AUTH_TOKEN
)]
#[test]
fn test_ignored_with_long_env() {
panic!("should be ignored")
}
}
#[test_with::env(PWD)]
pub mod workable_mod {
#[test]
fn test_works() {
assert!(true);
}
}
#[test_with::env(NOTHING)]
pub mod ignore_pub_mod {
#[test]
fn test_ignored() {
panic!("should be ignored")
}
}
#[test_with::env(NOTHING)]
mod ignore_private_mod {
#[test]
fn test_ignored() {
panic!("should be ignored")
}
}
#[test_with::env(NOTHING)]
#[cfg(test)]
pub mod ignore_pub_test_mod {
#[test]
fn test_ignored() {
panic!("should be ignored")
}
}
#[test_with::env(NOTHING)]
#[cfg(test)]
mod ignore_private_test_mod {
#[test]
fn test_ignored() {
panic!("should be ignored")
}
}
|