1
0
Fork 0
mirror of https://github.com/koalyptus/TableFilter.git synced 2024-06-07 00:12:25 +02:00
TableFilter/test/test-rows-counter.js
2015-05-14 20:08:19 +10:00

25 lines
711 B
JavaScript

var tf = new TableFilter('demo', {
base_path: '../dist/tablefilter/',
rows_counter: true
});
tf.init();
module('Sanity checks');
test('RowsCounter component', function() {
notEqual(tf.Cpt.rowsCounter, null, 'RowsCounter instanciated');
});
test('RowsCounter component with paging', function() {
tf.Cpt.paging = new TableFilter.Paging(tf);
var paging = tf.Cpt.paging;
paging.addPaging();
equal(tf.Cpt.rowsCounter.rowsCounterSpan.innerHTML, '1-7 / 7', 'Counter value with paging');
paging.destroy();
});
test('RowsCounter component without paging', function() {
tf.Cpt.rowsCounter.refresh();
equal(tf.Cpt.rowsCounter.rowsCounterSpan.innerHTML, 7, 'Counter value');
});