assert-text 0.2.8

the testing macro tools.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

all: readme

readme: README.md

README.md: README.tpl src/lib.rs
	cargo readme > $@

test:
	cargo test -p test-helper

clean:
	cargo clean

clippy:
	cargo clippy --tests --workspace