1
0
mirror of https://github.com/django/django.git synced 2024-11-18 07:26:04 +00:00
django/js_tests/admin/actions.test.js
Trey Hunner 2d0dead224 DEP 0003 -- Added JavaScript unit tests.
Setup QUnit, added tests, and measured test coverage.

Thanks to Nick Sanford for the initial tests.
2015-06-30 21:04:16 -04:00

19 lines
492 B
JavaScript

module('admin.actions', {
beforeEach: function() {
// Number of results shown on page
window._actions_icnt = '100';
var $ = django.jQuery;
$('#qunit-fixture').append($('#result-table').text());
$('tr input.action-select').actions();
}
});
test('check', function(assert) {
var $ = django.jQuery;
assert.notOk($('.action-select').is(':checked'));
$('#action-toggle').click();
assert.ok($('.action-select').is(':checked'));
});