mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-26 20:34:02 +03:00
20 lines
384 B
JavaScript
20 lines
384 B
JavaScript
|
/*globals describe, beforeEach, it*/
|
||
|
|
||
|
(function () {
|
||
|
"use strict";
|
||
|
|
||
|
var should = require('should'),
|
||
|
Ghost = require('../../ghost');
|
||
|
|
||
|
describe("Ghost API", function () {
|
||
|
|
||
|
it("is a singleton", function() {
|
||
|
var ghost1 = new Ghost(),
|
||
|
ghost2 = new Ghost();
|
||
|
|
||
|
should.strictEqual(ghost1, ghost2);
|
||
|
});
|
||
|
|
||
|
});
|
||
|
|
||
|
}());
|