mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-27 12:53:13 +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);
|
|
});
|
|
|
|
});
|
|
|
|
}()); |