Ghost/ghost/admin/tests/unit/models/navigation-item-test.js
Kevin Ansfield cb59388c5b 💄🐷 sort-imports eslint rule (#712)
no issue

- adds `eslint-plugin-sort-imports-es6-autofix` dependency
  - implements ESLint's base `sort-imports` rule but has a distinction in that `import {foo} from 'bar';` is considered `multiple` rather than `single`
  - fixes ESLint's autofix behaviour so `eslint --fix` will actually fix the sort order
- updates all unordered import rules by using `eslint --fix`

With the increased number of `import` statements since Ember+ecosystem started moving towards es6 modules I've found it frustrating at times trying to search through randomly ordered import statements. Recently I've been sorting imports manually when I've added new code or touched old code so I thought I'd add an ESLint rule to codify it.
2017-05-29 20:50:03 +02:00

66 lines
1.7 KiB
JavaScript

/* jshint expr:true */
import {describe, it} from 'mocha';
import {expect} from 'chai';
import {setupTest} from 'ember-mocha';
describe('Unit: Model: navigation-item', function() {
setupTest('model:navigation-item', {
// Specify the other units that are required for this test.
needs: []
});
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;
});
});