Skip to content

Commit

Permalink
added Make file with test-all target. Can be used by CI
Browse files Browse the repository at this point in the history
  • Loading branch information
podviaznikov committed Nov 25, 2011
1 parent 034160f commit d98a70c
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 2 deletions.
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
TESTS = test/blob.coffee

test-all:
@NODE_ENV=test ./node_modules/.bin/mocha \
--require coffee-script \
$(TESTS)
6 changes: 6 additions & 0 deletions Makefile~
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
TESTS = test/blob.coffee

test:
@NODE_ENV=test ./node_modules/.bin/mocha \
--require coffee-script \
$(TESTS)
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
},
"main": "./index.coffee",
"engines": {
"node": "~v0.4.9"
"node": "~v0.4.12"
},
"dependencies": {
"riak-js": ">=0.4.1",
Expand All @@ -18,7 +18,7 @@
"validator": ">=0.3.0"
},
"devDependencies": {
"mocha": ">=0.2.0",
"mocha": ">=0.0.6",
"should": ">=0.3.1",
"async": ">=0.1.10"
}
Expand Down
26 changes: 26 additions & 0 deletions package.json~
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"author": "CircuitHub (circuithub.com)",
"name": "massive-git",
"description": "Revision database that implements Git Object Model",
"version": "0.5.1",
"repository": {
"type": "git",
"url": "git://github.com/circuithub/massive-git.git"
},
"main": "./index.coffee",
"engines": {
"node": "~v0.4.9"
},
"dependencies": {
"riak-js": ">=0.4.1",
"coffee-script": ">=1.1.2",
"underscore": ">=1.2.0",
"validator": ">=0.3.0"
},
"devDependencies": {
"mocha": ">=0.0.6",
"should": ">=0.3.1",
"async": ">=0.1.10"
}
}

0 comments on commit d98a70c

Please sign in to comment.