Use the `prove` command to run our tests, this allows them to be shuffled, or randomised, which is a good thing.
18 lines
165 B
Makefile
18 lines
165 B
Makefile
|
|
all:
|
|
@cd ..; prove --shuffle tests/
|
|
|
|
verbose:
|
|
@cd ..; prove --shuffle --verbose tests/
|
|
|
|
|
|
modules: .PHONY
|
|
./modules.sh > modules.t
|
|
|
|
.PHONY:
|
|
true
|
|
|
|
clean:
|
|
|
|
rm *~
|