initial commit

This commit is contained in:
Dan Zajdband
2012-05-16 20:32:25 -03:00
commit a951072182
8 changed files with 268 additions and 0 deletions

11
Makefile Normal file
View File

@@ -0,0 +1,11 @@
ALL_TESTS = $(shell find test/ -name '*.test.js')
run-tests:
@./node_modules/.bin/mocha \
$(TESTFLAGS) \
$(TESTS)
test:
@$(MAKE) NODE_PATH=lib TESTS="$(ALL_TESTS)" run-tests
.PHONY: test