name: "Lifecycle",
"construct with array should not error": function () {
},
"construct after augmented class instantiation should not clobber items": function () {
function C(items) {
}
var list = new C(['foo']);
}
}));
name: "API",
setUp: function () {
},
"test item": function () {
},
"test each": function () {
var size = 0,
size++;
}
});
},
"test each with context override": function () {
var size = 0,
size++;
}, obj);
},
"test some": function () {
var size = 0,
size++;
return true;
}
});
},
"test some with context override": function () {
var size = 0,
if (size++) {
return true;
}
}, obj);
},
"test some without breaking out of the loop": function () {
var size = 0,
size++;
}
});
},
"test indexOf": function () {
},
"test size": function () {
},
"test isEmpty": function () {
},
"test toJSON": function () {
// toJSON doesn't recurse
}
}));
name: "addMethod",
"test addMethod": function () {
}
});
},
"methods should be chainable unless a value is returned": function () {
}
});
}
}));