mirror of
https://github.com/zaphar/ucg.git
synced 2025-07-22 18:19:54 -04:00
* Assert now requires a tuple instead of a string containing statements. * We include a helpful ucg based unit testing module. Fixes: #26
15 lines
210 B
Makefile
15 lines
210 B
Makefile
all: test build
|
|
|
|
build:
|
|
cargo build
|
|
|
|
test: unit integration stdlibtest
|
|
|
|
unit:
|
|
cargo test
|
|
|
|
integration: unit
|
|
cargo run -- test -r integration_tests
|
|
|
|
stdlibtest: integration
|
|
cargo run -- test -r std/tests
|