getPostSummaryByPids test

v1.18.x
barisusakli 9 years ago
parent 93a3f0f6c5
commit ba17f98c70

@ -185,6 +185,25 @@ describe('Post\'s', function () {
});
});
describe('getPostSummaryByPids', function () {
it('should return empty array for empty pids', function (done) {
posts.getPostSummaryByPids([], 0, {}, function (err, data) {
assert.ifError(err);
assert.equal(data.length, 0);
done();
});
});
it('should get post summaries', function (done) {
posts.getPostSummaryByPids([postData.pid], 0, {}, function (err, data) {
assert.ifError(err);
assert(data[0].user);
assert(data[0].topic);
assert(data[0].category);
done();
});
});
});
after(function (done) {
db.flushdb(done);

Loading…
Cancel
Save