rstest-log 0.1.0

A wrapper around the test_log crate that supports rstest
Documentation

rstest-log

Wrapper for the test_log crate to support rstest.

Usage

use rstest_log::rstest;

#[rstest(tokio::test)]
#[case(1)]
#[case(2)]
async fn test(#[case] val: i64) {
    assert_eq!(val, val);
}