0.2.4 - This version may not be safe as it has not been updated for a long time. Find out if your coding project uses this component and get notified of any reported security vulnerabilities with Meterian-X Open Source Security Platform
Maintain your licence declarations and avoid unwanted licences to protect your IP the way you intended.
MIT - MIT License#[macro_use]
extern crate interpolate_name;
use interpolate_name::interpolate_test;
#[interpolate_test(foo, "foo")]
#[interpolate_test(bar, "bar")]
#[interpolate_test(baz, "baz")]
fn testme(f: &str) {
println!("testing {}", f);
}Produces
running 3 tests
test testme_baz ... ok
test testme_bar ... ok
test testme_foo ... ok