mockdown 0.4.1

Mockdown is a single file and macro/dependency free mock library for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

.PHONY: build check test doc

build: check
	cargo doc
	cargo build

check:
	cargo clippy
	cargo fmt --check

test: check
	RUSTDOCFLAGS="--cfg test" cargo test --doc -v -- --show-output

doc: build
	open target/doc/mockdown/index.html