Ghost/ghost/admin/tests/unit/models/navigation-item-test.js
Kevin Ansfield 0e2f4ea33e Use a custom transform to simplify navigation settings
no issue
- moves the `NavItem` object from the navigation controller to an explicit `NavigationItem` model file
- adds a custom transform `navigation-settings` that transforms the navigation settings JSON string to/from an array of `NavigationItem` objects
- simplifies the `settings/navigation` controller as it no longer has to export it's own internal model and handle serialization and deserialization

This pattern should also help simplify the apps/slack integration code if implemented there.
2016-04-26 12:32:29 +01:00

68 lines
1.8 KiB
JavaScript

/* jshint expr:true */
import { expect } from 'chai';
import { describeModule, it } from 'ember-mocha';
describeModule(
'model:navigation-item',
'Unit: Model: navigation-item',
{
// Specify the other units that are required for this test.
needs: []
},
function() {
it('isComplete is true when label and url are filled', function () {
let model = this.subject();
model.set('label', 'test');
model.set('url', 'test');
expect(model.get('isComplete')).to.be.true;
});
it('isComplete is false when label is blank', function () {
let model = this.subject();
model.set('label', '');
model.set('url', 'test');
expect(model.get('isComplete')).to.be.false;
});
it('isComplete is false when url is blank', function () {
let model = this.subject();
model.set('label', 'test');
model.set('url', '');
expect(model.get('isComplete')).to.be.false;
});
it('isBlank is true when label and url are blank', function () {
let model = this.subject();
model.set('label', '');
model.set('url', '');
expect(model.get('isBlank')).to.be.true;
});
it('isBlank is false when label is present', function () {
let model = this.subject();
model.set('label', 'test');
model.set('url', '');
expect(model.get('isBlank')).to.be.false;
});
it('isBlank is false when url is present', function () {
let model = this.subject();
model.set('label', '');
model.set('url', 'test');
expect(model.get('isBlank')).to.be.false;
});
}
);