PosAnimation tests

This commit is contained in:
Aaron Rutkovsky 2013-07-11 12:30:15 -05:00
parent 24ebb66f40
commit 0e34b8caf2

View File

@ -0,0 +1,27 @@
describe('PosAnimation', function() {
var el;
beforeEach(function() {
el = document.createElement('div');
this.subject = new L.PosAnimation();
this.subject._el = el;
});
describe('#_onStep', function() {
it("sets element position and fires step event if it is able to get current position", function() {
var point = new L.Point(5, 5, true);
sinon.stub(this.subject, '_getPos').returns(point);
this.subject.fire = sinon.stub();
this.subject._onStep();
expect(this.subject.fire.withArgs('step').calledOnce).to.be(true);
expect(this.subject._el._leaflet_pos).to.be(point);
});
it('stops transition if a position returned', function() {
sinon.stub(this.subject, '_onTransitionEnd');
sinon.stub(this.subject, '_getPos').returns(undefined);
this.subject._onStep();
expect(this.subject._onTransitionEnd.calledOnce).to.be(true);
});
});
});