moved logLevelFilter tests to vows

This commit is contained in:
csausdev
2010-12-06 20:26:23 +11:00
parent 2e03ad0748
commit 04569674f6
2 changed files with 19 additions and 20 deletions

View File

@@ -138,26 +138,6 @@ describe 'log4js'
end
describe 'logLevelFilter'
it 'should only pass log events greater than or equal to its own level'
var logEvent;
log4js.addAppender(log4js.logLevelFilter('ERROR', function(evt) { logEvent = evt; }));
logger.debug('this should not trigger an event');
logEvent.should.be undefined
logger.warn('neither should this');
logEvent.should.be undefined
logger.error('this should, though');
logEvent.should.not.be undefined
logEvent.message.should.be 'this should, though'
logger.fatal('so should this')
logEvent.message.should.be 'so should this'
end
end
end