1
0
Fork 0

test: add a small 🤏 cute 🥺 test to prove it works

This commit is contained in:
aviac 2024-05-10 09:05:37 +02:00
parent 9b2864bd70
commit 5fc28346e6
No known key found for this signature in database
GPG key ID: 644781002BDEA982
2 changed files with 97 additions and 0 deletions

View file

@ -430,3 +430,9 @@ async fn admin() {
.await
.expect("failed to delete hook");
}
#[test]
fn ssh_url_deserialization() {
let data = include_str!("./repo_data.json");
assert!(serde_json::from_str::<Repository>(data).is_ok());
}