data-test

Crates.iodata-test
lib.rsdata-test
version0.1.2
sourcesrc
created_at2020-05-28 03:28:28.288182
updated_at2024-04-17 01:40:37.680824
descriptionSimple data-test (aka table-test), without custom test to run with your test runner
homepage
repositoryhttps://github.com/jhg/data-test-rs
max_upload_size
id246911
size6,791
Jesus Hernandez (jhg)

documentation

README

Data-Test

Rust data-test (aka table-test) helpers

Build Status GitHub Crates.io

Getting Started

Add to your test dependencies:

[dev-dependencies]
data-test = "^0.1"

Example of usage:

#[cfg(test)]
mod tests {
    use data_test::data_test;

    #[test]
    fn it_works() {
        assert_eq!(2 + 2, 4);
    }

    data_test! {
        fn is_equal(input, expected) => {
            assert_eq!(input, expected);
        }
        - a (1, 1)
        - b (2, 2)
        - c (3, 3)
        - d (4, 4)
        - e (5, 5)
        - f ("hello world", "hello world")
    }
}
// cargo test output:
// test tests::it_works ... ok
// test tests::is_equal::a ... ok
// test tests::is_equal::b ... ok
// test tests::is_equal::c ... ok
// test tests::is_equal::d ... ok
// test tests::is_equal::e ... ok
// test tests::is_equal::f ... ok
Commit count: 23

cargo fmt