2016-12-19 17:43:47 +00:00
|
|
|
/* global QUnit, SelectBox */
|
2020-03-16 05:20:22 +00:00
|
|
|
/* eslint strict: 0 */
|
2015-08-26 04:24:55 +00:00
|
|
|
'use strict';
|
|
|
|
|
2016-12-19 17:43:47 +00:00
|
|
|
QUnit.module('admin.SelectBox');
|
2015-04-14 14:55:57 +00:00
|
|
|
|
2016-12-19 17:43:47 +00:00
|
|
|
QUnit.test('init: no options', function(assert) {
|
2015-04-14 14:55:57 +00:00
|
|
|
var $ = django.jQuery;
|
|
|
|
$('<select id="id"></select>').appendTo('#qunit-fixture');
|
|
|
|
SelectBox.init('id');
|
2015-08-26 04:24:55 +00:00
|
|
|
assert.equal(SelectBox.cache.id.length, 0);
|
2015-04-14 14:55:57 +00:00
|
|
|
});
|
|
|
|
|
2016-12-19 17:43:47 +00:00
|
|
|
QUnit.test('filter', function(assert) {
|
2015-04-14 14:55:57 +00:00
|
|
|
var $ = django.jQuery;
|
|
|
|
$('<select id="id"></select>').appendTo('#qunit-fixture');
|
|
|
|
$('<option value="0">A</option>').appendTo('#id');
|
|
|
|
$('<option value="1">B</option>').appendTo('#id');
|
|
|
|
SelectBox.init('id');
|
|
|
|
assert.equal($('#id option').length, 2);
|
|
|
|
SelectBox.filter('id', "A");
|
|
|
|
assert.equal($('#id option').length, 1);
|
|
|
|
assert.equal($('#id option').text(), "A");
|
|
|
|
});
|