diff --git a/test/Makefile b/test/Makefile new file mode 100644 index 00000000..0355a170 --- /dev/null +++ b/test/Makefile @@ -0,0 +1,9 @@ +all: bdd php + +bdd: + cd bdd && behave -DREMOVE_TEMPLATE=1 + +php: + cd php && phpunit ./ + +.PHONY: bdd php