Expand description

Define which IPFS (Kubo) Docker images the Rust library will be tested against.

Examples

use ipfs_api_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 ipfs_api_versions::test_supported_images;

#[test_supported_images]
fn test_bar(image_name: &str, image_tag: &str) {
    // ...test implementation to run against all supported images
}

Attribute Macros