mirror of https://github.com/ColorlibHQ/gentelella
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
667 B
30 lines
667 B
module('Data adapters - Base');
|
|
|
|
var BaseData = require('select2/data/base');
|
|
var $ = require('jquery');
|
|
var Options = require('select2/options');
|
|
|
|
var options = new Options({});
|
|
|
|
test('current is required', function (assert) {
|
|
var data = new BaseData($('#qunit-fixture select'), options);
|
|
|
|
assert.throws(
|
|
function () {
|
|
data.current(function () {});
|
|
},
|
|
'current has no default implementation'
|
|
);
|
|
});
|
|
|
|
test('query is required', function (assert) {
|
|
var data = new BaseData($('#qunit-fixture select'), options);
|
|
|
|
assert.throws(
|
|
function () {
|
|
data.query({}, function () {});
|
|
},
|
|
'query has no default implementation'
|
|
);
|
|
});
|