Skip to content

Commit

Permalink
Fixed tests for 0.5.x
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Oct 24, 2011
1 parent 6f2a573 commit ddb1463
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@

test:
@./support/expresso/bin/expresso \
-I lib
@./node_modules/.bin/expresso

.PHONY: test
4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
, "version": "0.3.1"
, "author": "TJ Holowaychuk <[email protected]>"
, "contributors": [ "Aseem Kishore <[email protected]>" ]
, "devDependencies": {
"expresso": "0.9.2"
, "should": "*"
}
, "keywords": ["test", "bdd", "assert"]
, "main": "./lib/should.js"
, "engines": { "node": ">= 0.2.0" }
Expand Down
1 change: 0 additions & 1 deletion support/expresso
Submodule expresso deleted from 7f10ab
2 changes: 1 addition & 1 deletion test/exist.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Module dependencies.
*/

var should = require('should');
var should = require('../');
var util = require('util');

function err(fn, msg) {
Expand Down
2 changes: 1 addition & 1 deletion test/should.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Module dependencies.
*/

var should = require('should');
var should = require('../');

function err(fn, msg) {
try {
Expand Down

0 comments on commit ddb1463

Please sign in to comment.