testanything

Crates.iotestanything
lib.rstestanything
version0.4.2
sourcesrc
created_at2018-09-26 18:46:27.339534
updated_at2023-10-16 18:46:21.040649
descriptionGenerate results in the Test Anything Protocol (TAP)
homepagehttps://github.com/yonkeltron/TAP-Rust
repositoryhttps://github.com/yonkeltron/TAP-Rust
max_upload_size
id86722
size34,406
Jonathan E. Magen (yonkeltron)

documentation

README

TAP: Test Anything Protocol

-> Lives on crates.io as the testanything crate.

This Rust library provides facilities for the generating and emitting results in the Test Anything Protocol. Please feel free to see testanything.org for more information.

Usage

Please see the examples in the examples folder.

Simple:

1..2
ok 1 Panda Bamboo
not ok 2 Curry Noodle
# Tree
# Flower

Use with alloc only (#[no_std])

To use this crate with alloc in #[no_std], use:

testanything = { version = "*", default-features = false, features = ["alloc"] }

Testing

cargo test

License

Apache License Version 2.0

Commit count: 80

cargo fmt