Inital Commit
[oweals/finalsclub.git] / node_modules / mongoose / support / expresso / test / async.test.js
1
2 /**
3  * Module dependencies.
4  */
5
6 var assert = require('assert');
7
8 setTimeout(function(){
9     exports['test async exports'] = function(){
10         assert.ok('wahoo');
11     };
12 }, 100);