mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-19 08:31:43 +03:00
e74e2e039e
no issue - switch `jscs` and `jshint` inline config to `eslint` config - fix eslint errors, predominantly in tests where the config now the main app config more closely
68 lines
1.8 KiB
JavaScript
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;
|
|
});
|
|
}
|
|
);
|