Skip to content

Commit 90334f8

Browse files
committed
add lodash to help with unit test assertions
1 parent 1aab1af commit 90334f8

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
"dependencies": {},
1212
"devDependencies": {
1313
"should": "^6.0.0",
14-
"mocha": "^2.2.5"
14+
"mocha": "^2.2.5",
15+
"lodash": "^3.10.1"
1516
},
1617
"repository": {
1718
"type": "git",

test/test-python-shell.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
var should = require('should');
2+
var _ = require('lodash');
23
var PythonShell = require('..');
34

45
describe('PythonShell', function () {

0 commit comments

Comments
 (0)