Skip to content

Commit

Permalink
add dummy test
Browse files Browse the repository at this point in the history
To make sure tests in both crates run when calling `cargo test` in the
root dir.
  • Loading branch information
tbro committed Oct 13, 2023
1 parent 7d6bf70 commit cdb830c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions rustls-cert-gen/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,8 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
fs::write("certs/key.der", &cert.serialize_private_key_der())?;
Ok(())
}

#[test]
fn test_add() {
assert_eq!(1 + 1, 2)
}

0 comments on commit cdb830c

Please sign in to comment.