#tap #command-line #anything #stream #protocols #emit #testing

app tapper

命令行测试任何协议(TAP)生成器

4 个版本

0.1.3 2020年10月2日
0.1.2 2020年5月4日
0.1.1 2019年10月25日
0.1.0 2019年10月25日

#16#emit

Apache-2.0

7KB
111 代码行,不包括注释

tapper:从命令行生成TAP

如果你像我一样,你喜欢TAP并希望更多东西支持它。如果是这样,那么tapper就是为你准备的。

这个工具允许你从类似shell脚本这样的东西中生成TAP流。例如,以下Bash脚本

[bash] .... #!/usr/bin/env bash

set -e

tapper plan --from 1 --to 2 tapper test pass --number 1 --message "这是一个通过测试。" tapper test fail --number 2 --message "这是一个失败测试。" ....

上面的代码将生成一个包含适当计划行和两个测试的TAP流,一个通过一个失败。

安装

使用cargo install tapper安装它。

你可以使用cargo install tapper --force升级它。

依赖项

~770KB