| Index: appengine/config_service/ui/bower_components/sinon-chai/test/callCount.coffee
|
| diff --git a/appengine/config_service/ui/bower_components/sinon-chai/test/callCount.coffee b/appengine/config_service/ui/bower_components/sinon-chai/test/callCount.coffee
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..9625978e841e9b8c3d7ce2bdaa122d575e689bc9
|
| --- /dev/null
|
| +++ b/appengine/config_service/ui/bower_components/sinon-chai/test/callCount.coffee
|
| @@ -0,0 +1,122 @@
|
| +"use strict"
|
| +
|
| +sinon = require("sinon")
|
| +
|
| +describe "Call count", ->
|
| + spy = null
|
| +
|
| + beforeEach ->
|
| + spy = sinon.spy()
|
| +
|
| + describe "called", ->
|
| + it "should throw an assertion error when the spy is undefined", ->
|
| + expect(-> expect(undefined).to.have.been.called).to.throw(TypeError)
|
| +
|
| + it "should throw an assertion error when the spy is not called", ->
|
| + expect(-> spy.should.have.been.called).to.throw(AssertionError)
|
| +
|
| + it "should not throw when the spy is called once", ->
|
| + spy()
|
| +
|
| + expect(-> spy.should.have.been.called).to.not.throw()
|
| +
|
| + it "should not throw when the spy is called twice", ->
|
| + spy()
|
| + spy()
|
| +
|
| + expect(-> spy.should.have.been.called).to.not.throw()
|
| +
|
| + describe "not called", ->
|
| + it "should not throw when the spy is not called", ->
|
| + expect(-> spy.should.not.have.been.called).to.not.throw()
|
| +
|
| + it "should throw an assertion error when the spy is called once", ->
|
| + spy()
|
| +
|
| + expect(-> spy.should.not.have.been.called).to.throw(AssertionError)
|
| +
|
| + describe "callCount", ->
|
| + it "should throw an assertion error when the spy is not called", ->
|
| + expect(-> spy.should.have.callCount()).to.throw(AssertionError)
|
| +
|
| + it "should not throw an assertion error when the number of calls equals provided call count", ->
|
| + spy()
|
| + spy()
|
| + spy()
|
| + spy()
|
| +
|
| + expect(-> spy.should.have.callCount(4)).to.not.throw(AssertionError)
|
| +
|
| + it "should throw an assertion error whenever the number of calls are not equal to provided call count", ->
|
| + spy()
|
| + spy()
|
| + spy()
|
| +
|
| + expect(-> spy.should.have.callCount(4)).to.throw(AssertionError)
|
| +
|
| + describe "calledOnce", ->
|
| + it "should throw an assertion error when the spy is not called", ->
|
| + expect(-> spy.should.have.been.calledOnce).to.throw(AssertionError)
|
| +
|
| + it "should not throw when the spy is called once", ->
|
| + spy()
|
| +
|
| + expect(-> spy.should.have.been.calledOnce).to.not.throw()
|
| +
|
| + it "should throw an assertion error when the spy is called twice", ->
|
| + spy()
|
| + spy()
|
| +
|
| + expect(-> spy.should.have.been.calledOnce).to.throw(AssertionError)
|
| +
|
| + describe "calledTwice", ->
|
| + it "should throw an assertion error when the spy is not called", ->
|
| + expect(-> spy.should.have.been.calledTwice).to.throw(AssertionError)
|
| +
|
| + it "should throw an assertion error when the spy is called once", ->
|
| + spy()
|
| +
|
| + expect(-> spy.should.have.been.calledTwice).to.throw(AssertionError)
|
| +
|
| + it "should not throw when the spy is called twice", ->
|
| + spy()
|
| + spy()
|
| +
|
| + expect(-> spy.should.have.been.calledTwice).to.not.throw()
|
| +
|
| + it "should throw an assertion error when the spy is called thrice", ->
|
| + spy()
|
| + spy()
|
| + spy()
|
| +
|
| + expect(-> spy.should.have.been.calledTwice).to.throw(AssertionError)
|
| +
|
| + describe "calledThrice", ->
|
| + it "should throw an assertion error when the spy is not called", ->
|
| + expect(-> spy.should.have.been.calledThrice).to.throw(AssertionError)
|
| +
|
| + it "should throw an assertion error when the spy is called once", ->
|
| + spy()
|
| +
|
| + expect(-> spy.should.have.been.calledThrice).to.throw(AssertionError)
|
| +
|
| + it "should throw an assertion error when the spy is called twice", ->
|
| + spy()
|
| + spy()
|
| +
|
| + expect(-> spy.should.have.been.calledThrice).to.throw(AssertionError)
|
| +
|
| + it "should not throw when the spy is called thrice", ->
|
| + spy()
|
| + spy()
|
| + spy()
|
| +
|
| + expect(-> spy.should.have.been.calledThrice).to.not.throw()
|
| +
|
| + it "should throw an assertion error when the spy is called four times", ->
|
| + spy()
|
| + spy()
|
| + spy()
|
| + spy()
|
| +
|
| + expect(-> spy.should.have.been.calledThrice).to.throw(AssertionError)
|
|
|