added delete purge test

v1.18.x
barisusakli 9 years ago
parent ebcd892aee
commit 5d9373730a

@ -162,6 +162,32 @@ describe('Topic\'s', function() {
});
});
describe('.purge/.delete', function() {
var newTopic;
before(function(done) {
topics.post({uid: topic.userId, title: topic.title, content: topic.content, cid: topic.categoryId}, function(err, result) {
newTopic = result.topicData;
done();
});
});
it('should delete the topic', function(done) {
topics.delete(newTopic.tid, function(err) {
assert.ifError(err);
done();
});
});
it('should purge the topic', function(done) {
topics.purge(newTopic.tid, function(err) {
assert.ifError(err);
done();
});
});
});
after(function() {
db.flushdb();
});

Loading…
Cancel
Save