vows seems to have removed assert.length, replaced with assert.equal

This commit is contained in:
Gareth Jones 2011-11-16 08:39:07 +11:00
parent 154c0dc299
commit bc665b875e
5 changed files with 9 additions and 9 deletions

View File

@ -63,7 +63,7 @@ vows.describe('log4js fileAppender').addBatch({
'starting with the test file name should be two': function(err, files) { 'starting with the test file name should be two': function(err, files) {
//there will always be one backup if you've specified a max log size //there will always be one backup if you've specified a max log size
var logFiles = files.filter(function(file) { return file.indexOf('fa-maxFileSize-test.log') > -1; }); var logFiles = files.filter(function(file) { return file.indexOf('fa-maxFileSize-test.log') > -1; });
assert.length(logFiles, 2); assert.equal(logFiles.length, 2);
} }
} }
}, },
@ -97,7 +97,7 @@ vows.describe('log4js fileAppender').addBatch({
return logFiles; return logFiles;
}, },
'should be 3': function (files) { 'should be 3': function (files) {
assert.length(files, 3); assert.equal(files.length, 3);
}, },
'should be named in sequence': function (files) { 'should be named in sequence': function (files) {
assert.deepEqual(files, ['fa-maxFileSize-with-backups-test.log', 'fa-maxFileSize-with-backups-test.log.1', 'fa-maxFileSize-with-backups-test.log.2']); assert.deepEqual(files, ['fa-maxFileSize-with-backups-test.log', 'fa-maxFileSize-with-backups-test.log.1', 'fa-maxFileSize-with-backups-test.log.2']);

View File

@ -106,7 +106,7 @@ vows.describe('log4js layouts').addBatch({
output = layout(event); output = layout(event);
lines = output.split(/\n/); lines = output.split(/\n/);
assert.length(lines, stack.length); assert.equal(lines.length, stack.length);
assert.equal(lines[0], "[2010-12-05 14:18:30.045] [DEBUG] tests - this is a test Error: Some made-up error"); assert.equal(lines[0], "[2010-12-05 14:18:30.045] [DEBUG] tests - this is a test Error: Some made-up error");
for (var i = 1; i < stack.length; i++) { for (var i = 1; i < stack.length; i++) {
assert.equal(lines[i+1], stack[i+1]); assert.equal(lines[i+1], stack[i+1]);

View File

@ -24,7 +24,7 @@ vows.describe('log4js logLevelFilter').addBatch({
return logEvents; return logEvents;
}, },
'should only pass log events greater than or equal to its own level' : function(logEvents) { 'should only pass log events greater than or equal to its own level' : function(logEvents) {
assert.length(logEvents, 2); assert.equal(logEvents.length, 2);
assert.equal(logEvents[0].data[0], 'this should, though'); assert.equal(logEvents[0].data[0], 'this should, though');
assert.equal(logEvents[1].data[0], 'so should this'); assert.equal(logEvents[1].data[0], 'so should this');
} }

View File

@ -42,7 +42,7 @@ vows.describe('log4js').addBatch({
}, },
'should not emit events of a lower level': function(events) { 'should not emit events of a lower level': function(events) {
assert.length(events, 4); assert.equal(events.length, 4);
assert.equal(events[1].level.toString(), 'WARN'); assert.equal(events[1].level.toString(), 'WARN');
}, },
@ -456,7 +456,7 @@ vows.describe('log4js').addBatch({
}, },
'should configure log4js from first log4js.json found': function(args) { 'should configure log4js from first log4js.json found': function(args) {
var logEvents = args[1]; var logEvents = args[1];
assert.length(logEvents, 3); assert.equal(logEvents.length, 3);
assert.equal(logEvents[0].data[0], 'info1'); assert.equal(logEvents[0].data[0], 'info1');
assert.equal(logEvents[1].data[0], 'info3'); assert.equal(logEvents[1].data[0], 'info3');
assert.equal(logEvents[2].data[0], 'debug4'); assert.equal(logEvents[2].data[0], 'debug4');
@ -536,7 +536,7 @@ vows.describe('log4js').addBatch({
}, },
'should configure log4js from first log4js.json found': function(args) { 'should configure log4js from first log4js.json found': function(args) {
var logEvents = args[1]; var logEvents = args[1];
assert.length(logEvents, 2); assert.equal(logEvents.length, 2);
assert.equal(logEvents[0].data[0], 'info1'); assert.equal(logEvents[0].data[0], 'info1');
assert.equal(logEvents[1].data[0], 'info3'); assert.equal(logEvents[1].data[0], 'info3');
} }

View File

@ -76,7 +76,7 @@ vows.describe('log4js connect logger').addBatch({
'check message': function(messages) { 'check message': function(messages) {
assert.isArray(messages); assert.isArray(messages);
assert.length(messages, 1); assert.equal(messages.length, 1);
assert.equal(messages[0].level, levels.INFO); assert.equal(messages[0].level, levels.INFO);
assert.include(messages[0].message, 'GET'); assert.include(messages[0].message, 'GET');
assert.include(messages[0].message, 'http://url'); assert.include(messages[0].message, 'http://url');
@ -117,7 +117,7 @@ vows.describe('log4js connect logger').addBatch({
'check message': function(messages) { 'check message': function(messages) {
assert.isArray(messages); assert.isArray(messages);
assert.length(messages, 1); assert.equal(messages.length, 1);
assert.equal(messages[0].level, levels.INFO); assert.equal(messages[0].level, levels.INFO);
assert.equal(messages[0].message, 'GET http://url'); assert.equal(messages[0].message, 'GET http://url');
} }