Update unit tests

This commit is contained in:
James Allen 2017-03-06 12:01:18 +00:00
parent a9b7949828
commit a3a9a726d8

View file

@ -368,15 +368,8 @@ describe "RedisBackend", ->
it "should return the primary result", -> it "should return the primary result", ->
@result.should.deep.equal [@doclines, @version] @result.should.deep.equal [@doclines, @version]
it "should log out the secondary error", ->
@logger.error
.calledWith({
err: @error
}, "error in redis backend")
.should.equal true
describe "when the secondary errors", -> describe "when the primary errors", ->
beforeEach (done) -> beforeEach (done) ->
@rclient_redis.get = sinon.stub() @rclient_redis.get = sinon.stub()
@rclient_redis.exec = sinon.stub().yields(@error = new Error("oops")) @rclient_redis.exec = sinon.stub().yields(@error = new Error("oops"))
@ -391,13 +384,6 @@ describe "RedisBackend", ->
it "should return the error", -> it "should return the error", ->
@returned_error.should.equal @error @returned_error.should.equal @error
it "should log out the error", ->
@logger.error
.calledWith({
err: @error
}, "error in redis backend")
.should.equal true
describe "when the secondary takes longer than SECONDARY_TIMEOUT", -> describe "when the secondary takes longer than SECONDARY_TIMEOUT", ->
beforeEach (done) -> beforeEach (done) ->