rxpect 0.9.0

Extensible fluent expectations for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
checkFormat:
    cargo fmt --all --check
format:
    cargo fmt --all

lint:
    cargo clippy --all-targets --tests --all-features

fix_lints:
    cargo clippy --all-targets --tests --all-features --fix --allow-dirty

test:
    cargo test

ci: checkFormat lint test