moved Date tests to vows format

This commit is contained in:
csausdev
2010-12-06 18:38:20 +11:00
parent 2b7be410ea
commit 2e03ad0748
2 changed files with 14 additions and 23 deletions

View File

@@ -325,5 +325,19 @@ vows.describe('log4js').addBatch({
}
}), "nonsense");
}
},
'Date extensions': {
topic: function() {
require('../lib/log4js');
return new Date(2010, 0, 11, 14, 31, 30, 5);
},
'should add a toFormattedString method to Date': function(date) {
assert.isFunction(date.toFormattedString);
},
'should default to a format': function(date) {
assert.equal(date.toFormattedString(), '2010-01-11 14:31:30.005');
}
}
}).export(module);