114732ec25
This should allow us to create a basic interface that all adapters must follow.
30 lines
665 B
JavaScript
30 lines
665 B
JavaScript
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"
|
|
);
|
|
});
|