Skip to content

Commit

Permalink
init commit
Browse files Browse the repository at this point in the history
  • Loading branch information
pemrouz committed Jun 13, 2015
0 parents commit e2868c7
Show file tree
Hide file tree
Showing 5 changed files with 43 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
@@ -0,0 +1,3 @@
node_modules
coverage
*.log
7 changes: 7 additions & 0 deletions .travis.yml
@@ -0,0 +1,7 @@
language: node_js
node_js:
- "0.12"
- "0.11"
- "iojs"

after_script: NODE_ENV=test istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage
3 changes: 3 additions & 0 deletions index.js
@@ -0,0 +1,3 @@
module.exports = function falsy(){
return false
}
18 changes: 18 additions & 0 deletions package.json
@@ -0,0 +1,18 @@
{
"name": "falsy",
"version": "0.0.0",
"main": "index.js",
"scripts": {
"test": "istanbul test ./node_modules/mocha/bin/_mocha --report html -- -R spec",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && rm -rf ./coverage"
},
"author": "Pedram Emrouznejad (https://github.com/pemrouz)",
"license": "pemrouz.mit-license.org",
"devDependencies": {
"chai": "^2.3.0",
"coveralls": "^2.11.2",
"istanbul": "^0.3.13",
"mocha": "^2.2.4",
"mocha-lcov-reporter": "0.0.2"
}
}
12 changes: 12 additions & 0 deletions test.js
@@ -0,0 +1,12 @@
var expect = require('chai').expect
, falsy = require('./')

describe('falsy', function() {
it('should return false, despite args', function() {
expect(falsy(1,2,3)).to.be.false
})

it('should return false, despite context', function() {
expect(falsy.call('foo')).to.be.false
})
})

0 comments on commit e2868c7

Please sign in to comment.