FEATURE: Multiple embeddable hosts

- Also refactors two site settings components into one, with tests
This commit is contained in:
Robin Ward
2015-06-09 12:19:41 -04:00
parent 71ee84f848
commit 7b6d6b76eb
35 changed files with 183 additions and 102 deletions

View File

@ -0,0 +1,31 @@
moduleForComponent('value-list', {integration: true});
test('functionality', function(assert) {
andThen(() => {
this.render('{{value-list value=values}}');
});
andThen(() => {
assert.ok(this.$('.values .value').length === 0, 'it has no values');
assert.ok(this.$('input').length, 'it renders the input');
assert.ok(this.$('.btn-primary[disabled]').length, 'it is disabled with no value');
});
fillIn('input', 'eviltrout');
andThen(() => {
assert.ok(!this.$('.btn-primary[disabled]').length, "it isn't disabled anymore");
});
click('.btn-primary');
andThen(() => {
assert.ok(this.$('.values .value').length === 1, 'it adds the value');
assert.ok(this.$('input').val() === '', 'it clears the input');
assert.ok(this.$('.btn-primary[disabled]').length, "it is disabled again");
});
click('.value .btn-small');
andThen(() => {
assert.ok(this.$('.values .value').length === 0, 'it removes the value');
});
});