is_tested 0.1.1

Helper attribute for `cargo-is-tested`, along with `is_not_tested`
Documentation
  • Coverage
  • 0%
    0 out of 2 items documented0 out of 1 items with examples
  • Size
  • Source code size: 4.57 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 272.01 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 5s Average build duration of successful builds.
  • all releases: 5s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • blyxyas

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

Usage

use is_tested::is_tested;

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