odoo/addons/base/static/test/list.js

49 lines
1.4 KiB
JavaScript

$(document).ready(function () {
/**
* Tests a jQuery collection against a selector ("ands" the .is() of each
* member of the collection, instead of "or"-ing them)
*
* @param {jQuery} $c a jQuery collection object
* @param {String} selector the selector to test the collection against
*/
var are = function ($c, selector) {
return ($c.filter(function () { return $(this).is(selector); }).length
=== $c.length);
};
var fvg = {fields_view: {
'fields': [],
'arch': {
'attrs': {string: ''}
}
}};
var openerp;
module("ListView", {
setup: function () {
openerp = window.openerp.init(true);
window.openerp.base.chrome(openerp);
// views loader stuff
window.openerp.base.views(openerp);
window.openerp.base.list(openerp);
}
});
asyncTest('render selection checkboxes', 2, function () {
var listview = new openerp.base.ListView(
{}, null,
'qunit-fixture', {model: null});
listview.on_loaded(fvg);
listview.do_fill_table([{}, {}, {}]).then(function () {
ok(are(listview.$element.find('tbody th'),
'.oe-record-selector'));
ok(are(listview.$element.find('tbody th input'),
':checkbox:not([name])'));
start();
});
});
});