Expand description
Define which Vault images the Rust library will be tested against.
Examples
use passivized_vault_client_versions::test_current_image;
#[test_current_image]
fn test_foo(image_name: &str, image_tag: &str) {
// ...test implementation to run against only the latest image
}
use passivized_vault_client_versions::test_supported_images;
#[test_supported_images]
fn test_bar(image_name: &str, image_tag: &str) {
// ...test implementation to run against all supported images
}