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

Usage

```rust use isnottested::isnottested;

[isnottested]

fn my_function() { // [...] } ```