#proc-macro #attributes #interpolate #name #repetitive #procedural

macro interpolate_name

Simple procedural macro attribute for repetitive tests

8 releases

0.2.4 Sep 12, 2023
0.2.3 Aug 25, 2019
0.2.2 May 10, 2019
0.2.1 Mar 3, 2019
0.1.1 Aug 10, 2018

#631 in Testing

Download history 3008/week @ 2023-12-04 3010/week @ 2023-12-11 3119/week @ 2023-12-18 1751/week @ 2023-12-25 3601/week @ 2024-01-01 4870/week @ 2024-01-08 3250/week @ 2024-01-15 4355/week @ 2024-01-22 3421/week @ 2024-01-29 3634/week @ 2024-02-05 3282/week @ 2024-02-12 3556/week @ 2024-02-19 2580/week @ 2024-02-26 3704/week @ 2024-03-04 8084/week @ 2024-03-11 11554/week @ 2024-03-18

26,269 downloads per month
Used in 26 crates (4 directly)

MIT license

8KB
134 lines

Procedural macro attribute to do not repeat yourself while testing

Usage

#[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

lib.rs:

interpolate_name

interpolate_name consists in a set of procedural macro attributes geared towards reduce the boilerplate while writing repetitive tests.

  • interpolate_test: a quick way to test the same function by passing specific arguments and have a test entry for each of them.
  • interpolate_name: a simple function renamer that can be combined with macros to support more complex patterns.

Dependencies

~340–790KB
~19K SLoC