chore(codegen): implemented Eq for OpenApiSchema

This commit is contained in:
pyrite 2025-05-27 19:27:59 +02:00
parent c8bdcc81c4
commit 6aaa06f501
Signed by: pyrite
GPG key ID: 7F1BA9170CD35D15
4 changed files with 33 additions and 4 deletions

View file

@ -970,4 +970,18 @@ pub(super) mod test {
client.user().reports(|b| b).await.unwrap();
}
#[tokio::test]
async fn key_info() {
let client = test_client().await;
client.key().info(|b| b).await.unwrap();
}
#[tokio::test]
async fn key_log() {
let client = test_client().await;
client.key().log(|b| b).await.unwrap();
}
}