Ghost/ghost/admin/tests/unit/components/gh-trim-focus-input_test.js
Kevin Ansfield 753681e9e9 Standardize ember test names and file names
no issue
- standardize on "{TestType}: {ModuleType}: {module-name}" for test description strings
- standardize on `{module-name}-test.js` for test file names
- fix deprecation notices for ember component unit tests without explicit `unit: test` or `needs: []`
2015-10-06 17:31:03 +01:00

48 lines
1.1 KiB
JavaScript

import Ember from 'ember';
import {
describeComponent,
it
} from 'ember-mocha';
describeComponent(
'gh-trim-focus-input',
'Unit: Component: gh-trim-focus-input',
{
unit: true
},
function () {
it('trims value on focusOut', function () {
var component = this.subject({
value: 'some random stuff '
});
this.render();
component.$().focusout();
expect(component.$().val()).to.equal('some random stuff');
});
it('does not have the autofocus attribute if not set to focus', function () {
var component = this.subject({
value: 'some text',
focus: false
});
this.render();
expect(component.$().attr('autofocus')).to.not.be.ok;
});
it('has the autofocus attribute if set to focus', function () {
var component = this.subject({
value: 'some text',
focus: true
});
this.render();
expect(component.$().attr('autofocus')).to.be.ok;
});
}
);