Added more Flask tests

This commit is contained in:
Armin Ronacher 2010-04-14 02:42:12 +02:00
parent 8009bd9869
commit 08f1f0dc32
5 changed files with 197 additions and 82 deletions

11
Makefile Normal file
View file

@ -0,0 +1,11 @@
.PHONY: clean-pyc test
all: clean-pyc test
test:
python tests/flask_tests.py
clean-pyc:
find . -name '*.pyc' -exec rm -f {} +
find . -name '*.pyo' -exec rm -f {} +
find . -name '*~' -exec rm -f {} +