mirror of
https://github.com/seejohnrun/haste-server.git
synced 2024-11-01 11:31:22 +00:00
60 lines
No EOL
1.2 KiB
JavaScript
60 lines
No EOL
1.2 KiB
JavaScript
|
|
/**
|
|
* Module dependencies.
|
|
*/
|
|
|
|
var Suite = require('../suite')
|
|
, Test = require('../test');
|
|
|
|
/**
|
|
* TDD-style interface:
|
|
*
|
|
* exports.Array = {
|
|
* '#indexOf()': {
|
|
* 'should return -1 when the value is not present': function(){
|
|
*
|
|
* },
|
|
*
|
|
* 'should return the correct index when the value is present': function(){
|
|
*
|
|
* }
|
|
* }
|
|
* };
|
|
*
|
|
*/
|
|
|
|
module.exports = function(suite){
|
|
var suites = [suite];
|
|
|
|
suite.on('require', visit);
|
|
|
|
function visit(obj) {
|
|
var suite;
|
|
for (var key in obj) {
|
|
if ('function' == typeof obj[key]) {
|
|
var fn = obj[key];
|
|
switch (key) {
|
|
case 'before':
|
|
suites[0].beforeAll(fn);
|
|
break;
|
|
case 'after':
|
|
suites[0].afterAll(fn);
|
|
break;
|
|
case 'beforeEach':
|
|
suites[0].beforeEach(fn);
|
|
break;
|
|
case 'afterEach':
|
|
suites[0].afterEach(fn);
|
|
break;
|
|
default:
|
|
suites[0].addTest(new Test(key, fn));
|
|
}
|
|
} else {
|
|
var suite = Suite.create(suites[0], key);
|
|
suites.unshift(suite);
|
|
visit(obj[key]);
|
|
suites.shift();
|
|
}
|
|
}
|
|
}
|
|
}; |