mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
- move all test files from core/test to test/ - updated all imports and other references - all code inside of core/ is then application code - tests are correctly at the root level - consistent with other repos/projects Co-authored-by: Kevin Ansfield <kevin@lookingsideways.co.uk>
36 lines
1.2 KiB
JavaScript
36 lines
1.2 KiB
JavaScript
const should = require('should'),
|
|
sinon = require('sinon'),
|
|
helpers = require('../../../../core/frontend/helpers/register'),
|
|
AppProxy = require('../../../../core/frontend/services/apps/proxy'),
|
|
routing = require('../../../../core/frontend/services/routing');
|
|
|
|
describe('Apps', function () {
|
|
beforeEach(function () {
|
|
sinon.stub(routing.registry, 'getRouter').withArgs('appRouter').returns({
|
|
mountRouter: sinon.stub()
|
|
});
|
|
});
|
|
|
|
afterEach(function () {
|
|
sinon.restore();
|
|
});
|
|
|
|
describe('Proxy', function () {
|
|
it('creates a ghost proxy', function () {
|
|
var appProxy = AppProxy.getInstance('TestApp');
|
|
|
|
should.exist(appProxy.helpers);
|
|
should.exist(appProxy.helpers.register);
|
|
should.exist(appProxy.helpers.registerAsync);
|
|
});
|
|
|
|
it('allows helper registration', function () {
|
|
var registerSpy = sinon.stub(helpers, 'registerThemeHelper'),
|
|
appProxy = AppProxy.getInstance('TestApp');
|
|
|
|
appProxy.helpers.register('myTestHelper', sinon.stub().returns('test result'));
|
|
|
|
registerSpy.called.should.equal(true);
|
|
});
|
|
});
|
|
});
|