Code coverage report for simple/mocha/test2.js

Statements: 100% (6 / 6)      Branches: 100% (0 / 0)      Functions: 100% (2 / 2)      Lines: 100% (6 / 6)      Ignored: none     

All files » simple/mocha/ » test2.js
1 2 3 4 5 6 7 8 9 10 111 1   1 1     1 1    
var assert = require('assert');
var lib = require('../lib');
 
it('should find all there is', function () {
	assert.equal(lib.allThereIs(), 42);
});
 
it('should calculate the worst first million years for marvin', function () {
	assert.equal(lib.worstFirstMillionYears(), 30);
});