Crates.io | is_tested |
lib.rs | is_tested |
version | 0.1.1 |
source | src |
created_at | 2023-01-01 12:21:07.756717 |
updated_at | 2023-01-01 12:27:05.291728 |
description | Helper attribute for `cargo-is-tested`, along with `is_not_tested` |
homepage | |
repository | https://github.com/blyxyas/cargo-is-tested/tree/master/is_tested |
max_upload_size | |
id | 748830 |
size | 3,210 |
is_tested
This crate provides the attribute is_tested
, this attribute won't convert your input to anything, it's just a marker for the cargo-is-tested
binary.
The crate is supposed to be used with the cargo-is-tested
. It is useless without the binary
use is_tested::is_tested;
#[is_tested(<path_to_my_function_tests.rs>)]
fn my_function() {
// [...]
}