You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.2 KiB
JavaScript
44 lines
1.2 KiB
JavaScript
define([
|
|
'backbone',
|
|
'marionette',
|
|
'core/layout/module'
|
|
], function (Backbone, Marionette, LayoutModule) {
|
|
|
|
function MockModel() {
|
|
Backbone.Model.apply(this, arguments);
|
|
}
|
|
MockModel.prototype = new Backbone.Model();
|
|
MockModel.prototype.sync = function () {};
|
|
|
|
describe('LayoutModule', function () {
|
|
it('→ exits', function () {
|
|
var app = new Marionette.Application();
|
|
var module = new LayoutModule('layout', app, {});
|
|
expect(module).not.toBeUndefined();
|
|
});
|
|
|
|
describe('→ onStart', function () {
|
|
var app = null;
|
|
var module = null;
|
|
|
|
beforeEach(function () {
|
|
app = new Marionette.Application();
|
|
module = new LayoutModule('layout', app, {});
|
|
module.Model = MockModel;
|
|
});
|
|
|
|
it('→ will render view', function () {
|
|
spyOn(module.View.prototype, 'render');
|
|
module.onStart();
|
|
expect(module.View.prototype.render).toHaveBeenCalled();
|
|
});
|
|
|
|
it('→ will fetch model', function () {
|
|
spyOn(module.Model.prototype, 'fetch');
|
|
module.onStart();
|
|
expect(module.Model.prototype.fetch).toHaveBeenCalled();
|
|
});
|
|
});
|
|
});
|
|
});
|