is_tested 0.1.1

Helper attribute for `cargo-is-tested`, along with `is_not_tested`
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# `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**

[`cargo-is-tested`]: https://github.com/blyxyas/cargo-is-tested

## Usage

```rust
use is_tested::is_tested;

#[is_tested(<path_to_my_function_tests.rs>)]
fn my_function() {
	// [...]
}
```