heroku-debug
Version:
debugging plugin for the CLI
23 lines (20 loc) • 629 B
JavaScript
describe('exports', function () {
describe('.Command', function () {
it('should be `Command`', function () {
var Command = require('../../lib/command');
expect(Redis.Command).to.eql(Command);
});
});
describe('.Cluster', function () {
it('should be `Cluster`', function () {
var Cluster = require('../../lib/cluster');
expect(Redis.Cluster).to.eql(Cluster);
});
});
describe('.ReplyError', function () {
it('should be `ReplyError`', function () {
var ReplyError = require('../../lib/reply_error');
expect(Redis.ReplyError).to.eql(ReplyError);
});
});
});