mirror of https://gitee.com/bigwinds/arangodb
17 lines
377 B
JavaScript
17 lines
377 B
JavaScript
/*jshint browser: true */
|
|
/*jshint unused: false */
|
|
/*global describe, beforeEach, afterEach, it, spyOn, expect*/
|
|
/*global $*/
|
|
|
|
(function() {
|
|
"use strict";
|
|
|
|
describe("Arango Statistics Model", function() {
|
|
it("verifies url", function() {
|
|
var myStatistics = new window.Statistics();
|
|
expect(myStatistics.url())
|
|
.toEqual("/_admin/statistics");
|
|
});
|
|
});
|
|
|
|
}()); |