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