Skip to content

Commit

Permalink
Test cleanup
Browse files Browse the repository at this point in the history
Fix #10
  • Loading branch information
LoicMahieu committed Mar 14, 2016
1 parent 469ff74 commit 5c87e6f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ describe('Redis', () => {
});
});

describe('#start', () => {
describe('start()', () => {

it('sets client to when the connection succeeds', (done) => {

Expand Down Expand Up @@ -456,7 +456,7 @@ describe('Redis', () => {
});
});

describe('#isReady', () => {
describe('isReady()', () => {

it('returns true when when connected', (done) => {

Expand Down Expand Up @@ -524,7 +524,7 @@ describe('Redis', () => {
});
});

describe('#validateSegmentName', () => {
describe('validateSegmentName()', () => {

it('returns an error when the name is empty', (done) => {

Expand Down Expand Up @@ -574,7 +574,7 @@ describe('Redis', () => {
});
});

describe('#get', () => {
describe('get()', () => {

it('passes an error to the callback when the connection is closed', (done) => {

Expand Down Expand Up @@ -741,7 +741,7 @@ describe('Redis', () => {
});
});

describe('#set', () => {
describe('set()', () => {

it('passes an error to the callback when the connection is closed', (done) => {

Expand Down Expand Up @@ -785,7 +785,7 @@ describe('Redis', () => {
});
});

describe('#drop', () => {
describe('drop()', () => {

it('passes an error to the callback when the connection is closed', (done) => {

Expand Down Expand Up @@ -828,7 +828,7 @@ describe('Redis', () => {
});
});

describe('#stop', () => {
describe('stop()', () => {

it('sets the client to null', (done) => {

Expand Down

0 comments on commit 5c87e6f

Please sign in to comment.