mirror of
https://github.com/cnodejs/nodeclub.git
synced 2025-12-08 19:55:55 +00:00
22 lines
495 B
JavaScript
22 lines
495 B
JavaScript
var Reply = require('../../proxy/reply');
|
|
var support = require('../support/support');
|
|
var should = require('should');
|
|
|
|
describe('test/proxy/reply.test.js', function () {
|
|
var reply;
|
|
before(function (done) {
|
|
support.createUser(function (err, user) {
|
|
// support.createTopic();
|
|
// Reply.newAndSave(done);
|
|
done();
|
|
});
|
|
});
|
|
|
|
describe('getReplyById', function () {
|
|
it('should ok', function (done) {
|
|
// Reply.getReplyById('');
|
|
done();
|
|
});
|
|
});
|
|
});
|