0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00
This commit is contained in:
Ricardo Tomasi 2013-05-23 11:00:45 -03:00
parent 1af28bc2ac
commit 76891afd08
2 changed files with 28 additions and 30 deletions

View file

@ -37,30 +37,28 @@
test.expect(1);
api.settings.browse().then(function (settings) {
settings = _.map(settings.toJSON(), function (item) {
return _.omit(item, 'id', 'updated_at', 'created_at')
return _.omit(item, 'id', 'updated_at', 'created_at');
});
test.deepEqual(settings, fixtures.settings);
test.done();
}).then(null, fail);
},
// 'settings:read': function (test) {
// api.settings.read('title', function (setting) {
// console.log(setting);
// test.done();
// }).then(null, fail);
// },
'settings:read': function (test) {
api.settings.read('title', function (setting) {
test.done();
}).then(null, fail);
},
// 'settings:edit': function (test) {
// test.expect(2);
// api.settings.edit('title', "Jenna O'Neil").then(function (title) {
// title = title.toJSON();
// console.log('got title')
// test.equal(title.key, 'title');
// test.equal(title.value, "Jenna O'Neil");
// test.done();
// }).then(null, fail);
// }
'settings:edit': function (test) {
test.expect(2);
api.settings.edit('title', "Jenna O'Neil").then(function (title) {
title = title.toJSON();
test.equal(title.key, 'title');
test.equal(title.value, "Jenna O'Neil");
test.done();
}).then(null, fail);
}
};
}());