node-postgres/Makefile

27 lines
590 B
Makefile
Raw Normal View History

SHELL := /bin/bash
user=postgres
password=1234
host=localhost
port=5432
database=postgres
verbose=false
2010-12-25 10:09:55 +08:00
params := -u $(user) --password $(password) -p $(port) -d $(database) -h $(host) --verbose $(verbose)
2010-12-25 10:22:15 +08:00
node-command := xargs -n 1 -I file node file $(params)
2010-12-25 10:22:15 +08:00
.PHONY : test test-connection test-integration
test: test-unit
test-all: test-unit test-integration
2010-12-25 10:22:15 +08:00
test-unit:
@find test/unit -name "*-tests.js" | $(node-command)
test-connection:
@node script/test-connection.js $(params)
test-integration: test-connection
@find test/integration -name "*-tests.js" | $(node-command)