ftpd
Version:
Node FTP Server
26 lines (20 loc) • 476 B
JavaScript
var common = require('./lib/common');
describe('ALLO command', function() {
'use strict';
var client;
var server;
beforeEach(function(done) {
server = common.server();
client = common.client(done);
});
it('should reply 202', function(done) {
client.execute('ALLO', function(error, reply) {
common.should.not.exist(error);
reply.code.should.equal(202);
done();
});
});
afterEach(function() {
server.close();
});
});