Interface is wired up for Approving/Rejecting posts

This commit is contained in:
Robin Ward
2015-04-14 14:21:02 -04:00
parent 96d2c5069b
commit 0c233e4e25
20 changed files with 273 additions and 90 deletions

View File

@ -19,23 +19,51 @@ test('munging', function() {
test('update', function() {
const store = createStore();
store.find('widget', 123).then(function(widget) {
equal(widget.get('name'), 'Trout Lure');
widget.update({ name: 'new name' }).then(function() {
ok(!widget.get('isSaving'));
const promise = widget.update({ name: 'new name' });
ok(widget.get('isSaving'));
promise.then(function() {
ok(!widget.get('isSaving'));
equal(widget.get('name'), 'new name');
});
});
});
test('updating simultaneously', function() {
expect(2);
const store = createStore();
store.find('widget', 123).then(function(widget) {
const firstPromise = widget.update({ name: 'new name' });
const secondPromise = widget.update({ name: 'new name' });
firstPromise.then(function() {
ok(true, 'the first promise succeeeds');
});
secondPromise.catch(function() {
ok(true, 'the second promise fails');
});
});
});
test('save new', function() {
const store = createStore();
const widget = store.createRecord('widget');
ok(widget.get('isNew'), 'it is a new record');
ok(!widget.get('isCreated'), 'it is not created');
ok(!widget.get('isSaving'));
widget.save({ name: 'Evil Widget' }).then(function() {
const promise = widget.save({ name: 'Evil Widget' });
ok(widget.get('isSaving'));
promise.then(function() {
ok(!widget.get('isSaving'));
ok(widget.get('id'), 'it has an id');
ok(widget.get('name'), 'Evil Widget');
ok(widget.get('isCreated'), 'it is created');
@ -43,6 +71,23 @@ test('save new', function() {
});
});
test('creating simultaneously', function() {
expect(2);
const store = createStore();
const widget = store.createRecord('widget');
const firstPromise = widget.save({ name: 'Evil Widget' });
const secondPromise = widget.save({ name: 'Evil Widget' });
firstPromise.then(function() {
ok(true, 'the first promise succeeeds');
});
secondPromise.catch(function() {
ok(true, 'the second promise fails');
});
});
test('destroyRecord', function() {
const store = createStore();
store.find('widget', 123).then(function(widget) {