()
| 361 | } |
| 362 | |
| 363 | fn random_subdomain() -> String { |
| 364 | format!( |
| 365 | "_acme-challenge.{}.{}", |
| 366 | rand::random::<u64>(), |
| 367 | std::env::var("TEST_DOMAIN").expect("TEST_DOMAIN not set"), |
| 368 | ) |
| 369 | } |
| 370 | |
| 371 | #[tokio::test] |
| 372 | async fn can_add_txt_record() { |
no outgoing calls
no test coverage detected