name: "lifecycle and instantiation",
"Y.DataTable should be augmented": function () {
},
"Y.DataTable.Base should not be augmented": function () {
},
"Y.DataTable constructor should not error": function () {
columns: ['a'],
data: [{a:1}]
});
},
"test showMessaegs values": function () {
var config = {
columns: ['a'],
data: [{a:1}]
}, table;
config.showMessages = false;
config.showMessages = true;
},
"test set('showMessages')": function () {
columns: ['a'],
data: [{a:1}]
});
}
}));
name: "datatable-message",
"test showMessage()": function () {
},
"test showMessage(string)": function () {
},
"test showMessage(intlString)": function () {
},
"test hideMessage()": function () {
},
"adding rows should hide the message": function () {
},
"removing all rows should show the emptyMessage": function () {
}
}));