1
0
Fork 0
arangodb/js/apps/system/aardvark/test/specs/collections/foxxCollectionSpec.js

23 lines
525 B
JavaScript

/*jslint indent: 2, nomen: true, maxlen: 100, vars: true, white: true, plusplus: true */
/*global require, exports, Backbone, window, $, arangoLog */
(function () {
"use strict";
describe("FoxxCollection", function() {
var col;
beforeEach(function() {
col = new window.FoxxCollection();
});
it("FoxxCollection", function() {
expect(col.model).toEqual(window.Foxx);
expect(col.url).toEqual("/_admin/aardvark/foxxes");
});
})
}());