2013-11-08 05:54:33 +08:00
|
|
|
describe('Events', function () {
|
2010-09-04 00:16:29 +08:00
|
|
|
var Klass;
|
2013-02-05 00:31:14 +08:00
|
|
|
|
2013-11-08 05:54:33 +08:00
|
|
|
beforeEach(function () {
|
2010-09-04 00:16:29 +08:00
|
|
|
Klass = L.Class.extend({
|
|
|
|
includes: L.Mixin.Events
|
|
|
|
});
|
|
|
|
});
|
2013-02-05 00:31:14 +08:00
|
|
|
|
2013-11-08 05:54:33 +08:00
|
|
|
describe('#fireEvent', function () {
|
2013-02-05 00:31:14 +08:00
|
|
|
|
2013-11-08 05:54:33 +08:00
|
|
|
it('fires all listeners added through #addEventListener', function () {
|
2010-09-04 00:16:29 +08:00
|
|
|
var obj = new Klass(),
|
2013-03-02 05:49:20 +08:00
|
|
|
spy1 = sinon.spy(),
|
|
|
|
spy2 = sinon.spy(),
|
|
|
|
spy3 = sinon.spy(),
|
|
|
|
spy4 = sinon.spy(),
|
2013-11-08 05:54:33 +08:00
|
|
|
spy5 = sinon.spy(),
|
2013-03-02 05:49:20 +08:00
|
|
|
spy6 = sinon.spy();
|
|
|
|
|
|
|
|
obj.addEventListener('test', spy1);
|
2010-09-04 00:16:29 +08:00
|
|
|
obj.addEventListener('test', spy2);
|
|
|
|
obj.addEventListener('other', spy3);
|
2012-06-30 07:14:41 +08:00
|
|
|
obj.addEventListener({ test: spy4, other: spy5 });
|
2013-02-20 00:18:15 +08:00
|
|
|
obj.addEventListener({'test other': spy6 });
|
2013-02-05 00:31:14 +08:00
|
|
|
|
2013-03-02 05:49:20 +08:00
|
|
|
expect(spy1.called).to.be(false);
|
|
|
|
expect(spy2.called).to.be(false);
|
|
|
|
expect(spy3.called).to.be(false);
|
|
|
|
expect(spy4.called).to.be(false);
|
|
|
|
expect(spy5.called).to.be(false);
|
|
|
|
expect(spy6.called).to.be(false);
|
2013-02-05 00:31:14 +08:00
|
|
|
|
2010-09-04 00:16:29 +08:00
|
|
|
obj.fireEvent('test');
|
2013-02-05 00:31:14 +08:00
|
|
|
|
2013-03-02 05:49:20 +08:00
|
|
|
expect(spy1.called).to.be(true);
|
|
|
|
expect(spy2.called).to.be(true);
|
|
|
|
expect(spy3.called).to.be(false);
|
|
|
|
expect(spy4.called).to.be(true);
|
|
|
|
expect(spy5.called).to.be(false);
|
|
|
|
expect(spy6.called).to.be(true);
|
|
|
|
expect(spy6.callCount).to.be(1);
|
2010-09-04 00:16:29 +08:00
|
|
|
});
|
|
|
|
|
2013-11-08 05:54:33 +08:00
|
|
|
it('provides event object to listeners and executes them in the right context', function () {
|
2010-09-04 00:16:29 +08:00
|
|
|
var obj = new Klass(),
|
|
|
|
obj2 = new Klass(),
|
2012-06-30 07:14:41 +08:00
|
|
|
obj3 = new Klass(),
|
|
|
|
obj4 = new Klass(),
|
2010-09-04 00:16:29 +08:00
|
|
|
foo = {};
|
2013-02-05 00:31:14 +08:00
|
|
|
|
2010-09-04 00:16:29 +08:00
|
|
|
function listener1(e) {
|
2013-03-02 05:49:20 +08:00
|
|
|
expect(e.type).to.eql('test');
|
|
|
|
expect(e.target).to.eql(obj);
|
|
|
|
expect(this).to.eql(obj);
|
|
|
|
expect(e.baz).to.eql(1);
|
2012-06-30 07:14:41 +08:00
|
|
|
}
|
2013-02-05 00:31:14 +08:00
|
|
|
|
2010-09-04 00:16:29 +08:00
|
|
|
function listener2(e) {
|
2013-03-02 05:49:20 +08:00
|
|
|
expect(e.type).to.eql('test');
|
|
|
|
expect(e.target).to.eql(obj2);
|
|
|
|
expect(this).to.eql(foo);
|
|
|
|
expect(e.baz).to.eql(2);
|
2012-06-30 07:14:41 +08:00
|
|
|
}
|
2013-02-05 00:31:14 +08:00
|
|
|
|
2012-06-30 07:14:41 +08:00
|
|
|
function listener3(e) {
|
2013-03-02 05:49:20 +08:00
|
|
|
expect(e.type).to.eql('test');
|
|
|
|
expect(e.target).to.eql(obj3);
|
|
|
|
expect(this).to.eql(obj3);
|
|
|
|
expect(e.baz).to.eql(3);
|
2012-06-30 07:14:41 +08:00
|
|
|
}
|
2013-02-05 00:31:14 +08:00
|
|
|
|
2012-06-30 07:14:41 +08:00
|
|
|
function listener4(e) {
|
2013-03-02 05:49:20 +08:00
|
|
|
expect(e.type).to.eql('test');
|
|
|
|
expect(e.target).to.eql(obj4);
|
|
|
|
expect(this).to.eql(foo);
|
|
|
|
expect(e.baz).to.eql(4);
|
2012-06-30 07:14:41 +08:00
|
|
|
}
|
2013-02-05 00:31:14 +08:00
|
|
|
|
2010-09-04 00:16:29 +08:00
|
|
|
obj.addEventListener('test', listener1);
|
|
|
|
obj2.addEventListener('test', listener2, foo);
|
2012-06-30 07:14:41 +08:00
|
|
|
obj3.addEventListener({ test: listener3 });
|
|
|
|
obj4.addEventListener({ test: listener4 }, foo);
|
2013-02-05 00:31:14 +08:00
|
|
|
|
2012-06-30 07:14:41 +08:00
|
|
|
obj.fireEvent('test', {baz: 1});
|
|
|
|
obj2.fireEvent('test', {baz: 2});
|
|
|
|
obj3.fireEvent('test', {baz: 3});
|
|
|
|
obj4.fireEvent('test', {baz: 4});
|
2010-09-04 00:16:29 +08:00
|
|
|
});
|
2013-02-05 00:31:14 +08:00
|
|
|
|
2013-11-08 05:54:33 +08:00
|
|
|
it('calls no listeners removed through #removeEventListener', function () {
|
2010-09-04 00:16:29 +08:00
|
|
|
var obj = new Klass(),
|
2013-03-02 05:49:20 +08:00
|
|
|
spy = sinon.spy(),
|
|
|
|
spy2 = sinon.spy(),
|
|
|
|
spy3 = sinon.spy(),
|
|
|
|
spy4 = sinon.spy(),
|
|
|
|
spy5 = sinon.spy();
|
2013-02-05 00:31:14 +08:00
|
|
|
|
2010-09-04 00:16:29 +08:00
|
|
|
obj.addEventListener('test', spy);
|
|
|
|
obj.removeEventListener('test', spy);
|
2013-02-05 00:31:14 +08:00
|
|
|
|
2010-09-04 00:16:29 +08:00
|
|
|
obj.fireEvent('test');
|
2013-02-05 00:31:14 +08:00
|
|
|
|
2013-03-02 05:49:20 +08:00
|
|
|
expect(spy.called).to.be(false);
|
2013-02-05 00:31:14 +08:00
|
|
|
|
2012-06-30 07:14:41 +08:00
|
|
|
obj.addEventListener('test2', spy2);
|
|
|
|
obj.addEventListener('test2', spy3);
|
|
|
|
obj.removeEventListener('test2');
|
2013-02-05 00:31:14 +08:00
|
|
|
|
2012-06-30 07:14:41 +08:00
|
|
|
obj.fireEvent('test2');
|
2013-02-05 00:31:14 +08:00
|
|
|
|
2013-03-02 05:49:20 +08:00
|
|
|
expect(spy2.called).to.be(false);
|
|
|
|
expect(spy3.called).to.be(false);
|
2013-02-05 00:31:14 +08:00
|
|
|
|
2012-06-30 07:14:41 +08:00
|
|
|
obj.addEventListener('test3', spy4);
|
|
|
|
obj.addEventListener('test4', spy5);
|
|
|
|
obj.removeEventListener({
|
|
|
|
test3: spy4,
|
|
|
|
test4: spy5
|
|
|
|
});
|
2013-02-05 00:31:14 +08:00
|
|
|
|
2012-06-30 07:14:41 +08:00
|
|
|
obj.fireEvent('test3');
|
|
|
|
obj.fireEvent('test4');
|
2013-02-05 00:31:14 +08:00
|
|
|
|
2013-03-02 05:49:20 +08:00
|
|
|
expect(spy4.called).to.be(false);
|
|
|
|
expect(spy5.called).to.be(false);
|
2010-09-04 00:16:29 +08:00
|
|
|
});
|
2013-02-05 00:31:14 +08:00
|
|
|
|
2013-04-29 17:53:16 +08:00
|
|
|
it('can handle calls to #removeEventListener on objects with no registered event listeners', function () {
|
|
|
|
var obj = new Klass();
|
2013-04-29 19:03:05 +08:00
|
|
|
var removeNonExistentListener = function () {
|
|
|
|
obj.removeEventListener('test');
|
|
|
|
};
|
|
|
|
expect(removeNonExistentListener).to.not.throwException();
|
2013-04-29 17:53:16 +08:00
|
|
|
});
|
|
|
|
|
2013-02-05 00:31:14 +08:00
|
|
|
// added due to context-sensitive removeListener optimization
|
2013-02-20 04:41:48 +08:00
|
|
|
it('fires multiple listeners with the same context with id', function () {
|
2013-02-05 00:31:14 +08:00
|
|
|
var obj = new Klass(),
|
2013-03-02 05:49:20 +08:00
|
|
|
spy1 = sinon.spy(),
|
|
|
|
spy2 = sinon.spy(),
|
2013-02-05 00:31:14 +08:00
|
|
|
foo = {};
|
|
|
|
|
|
|
|
L.Util.stamp(foo);
|
|
|
|
|
2013-03-02 05:49:20 +08:00
|
|
|
obj.addEventListener('test', spy1, foo);
|
2013-02-05 00:31:14 +08:00
|
|
|
obj.addEventListener('test', spy2, foo);
|
|
|
|
|
|
|
|
obj.fireEvent('test');
|
|
|
|
|
2013-03-02 05:49:20 +08:00
|
|
|
expect(spy1.called).to.be(true);
|
|
|
|
expect(spy2.called).to.be(true);
|
2013-02-05 00:31:14 +08:00
|
|
|
});
|
|
|
|
|
2013-02-20 04:41:48 +08:00
|
|
|
it('removes listeners with stamped contexts', function () {
|
2013-02-05 00:31:14 +08:00
|
|
|
var obj = new Klass(),
|
2013-03-02 05:49:20 +08:00
|
|
|
spy1 = sinon.spy(),
|
|
|
|
spy2 = sinon.spy(),
|
2013-02-05 00:31:14 +08:00
|
|
|
foo = {};
|
|
|
|
|
|
|
|
L.Util.stamp(foo);
|
|
|
|
|
2013-03-02 05:49:20 +08:00
|
|
|
obj.addEventListener('test', spy1, foo);
|
2013-02-05 00:31:14 +08:00
|
|
|
obj.addEventListener('test', spy2, foo);
|
|
|
|
|
2013-03-02 05:49:20 +08:00
|
|
|
obj.removeEventListener('test', spy1, foo);
|
2013-02-05 00:31:14 +08:00
|
|
|
|
|
|
|
obj.fireEvent('test');
|
|
|
|
|
2013-03-02 05:49:20 +08:00
|
|
|
expect(spy1.called).to.be(false);
|
|
|
|
expect(spy2.called).to.be(true);
|
2013-02-05 00:31:14 +08:00
|
|
|
});
|
2013-03-13 05:08:04 +08:00
|
|
|
|
2013-11-08 05:54:33 +08:00
|
|
|
it('removes listeners with a stamp originally added without one', function () {
|
2013-03-13 05:08:04 +08:00
|
|
|
var obj = new Klass(),
|
2013-04-04 06:22:45 +08:00
|
|
|
spy1 = sinon.spy(),
|
|
|
|
spy2 = sinon.spy(),
|
2013-03-13 05:08:04 +08:00
|
|
|
foo = {};
|
|
|
|
|
|
|
|
obj.addEventListener('test', spy1, foo);
|
|
|
|
L.Util.stamp(foo);
|
|
|
|
obj.addEventListener('test', spy2, foo);
|
|
|
|
|
|
|
|
obj.removeEventListener('test', spy1, foo);
|
|
|
|
obj.removeEventListener('test', spy2, foo);
|
|
|
|
|
|
|
|
obj.fireEvent('test');
|
|
|
|
|
2013-04-04 06:22:45 +08:00
|
|
|
expect(spy1.called).to.be(false);
|
|
|
|
expect(spy2.called).to.be(false);
|
2013-03-13 05:08:04 +08:00
|
|
|
});
|
2013-05-08 17:58:50 +08:00
|
|
|
|
2013-11-04 04:47:55 +08:00
|
|
|
it('removes listeners with context == this and a stamp originally added without one', function () {
|
|
|
|
var obj = new Klass(),
|
2013-11-05 05:29:52 +08:00
|
|
|
obj2 = new Klass(),
|
2013-11-04 04:47:55 +08:00
|
|
|
spy1 = sinon.spy(),
|
2013-11-05 05:29:52 +08:00
|
|
|
spy2 = sinon.spy(),
|
|
|
|
spy3 = sinon.spy();
|
2013-11-04 04:47:55 +08:00
|
|
|
|
|
|
|
obj.addEventListener('test', spy1, obj);
|
|
|
|
L.Util.stamp(obj);
|
|
|
|
obj.addEventListener('test', spy2, obj);
|
2013-11-05 05:29:52 +08:00
|
|
|
obj.addEventListener('test', spy3, obj2); // So that there is a contextId based listener, otherwise removeEventListener will do correct behaviour anyway
|
2013-11-04 04:47:55 +08:00
|
|
|
|
|
|
|
obj.removeEventListener('test', spy1, obj);
|
|
|
|
obj.removeEventListener('test', spy2, obj);
|
2013-11-05 05:29:52 +08:00
|
|
|
obj.removeEventListener('test', spy3, obj2);
|
2013-11-04 04:47:55 +08:00
|
|
|
|
|
|
|
obj.fireEvent('test');
|
|
|
|
|
|
|
|
expect(spy1.called).to.be(false);
|
|
|
|
expect(spy2.called).to.be(false);
|
2013-11-05 05:29:52 +08:00
|
|
|
expect(spy3.called).to.be(false);
|
2013-11-04 04:47:55 +08:00
|
|
|
});
|
|
|
|
|
2013-03-15 08:53:03 +08:00
|
|
|
it('doesnt lose track of listeners when removing non existent ones', function () {
|
|
|
|
var obj = new Klass(),
|
2013-04-04 06:22:45 +08:00
|
|
|
spy = sinon.spy(),
|
|
|
|
spy2 = sinon.spy(),
|
2013-03-15 08:53:03 +08:00
|
|
|
foo = {},
|
|
|
|
foo2 = {};
|
|
|
|
|
|
|
|
L.Util.stamp(foo);
|
|
|
|
L.Util.stamp(foo2);
|
|
|
|
|
|
|
|
obj.addEventListener('test', spy, foo2);
|
|
|
|
|
|
|
|
obj.removeEventListener('test', spy, foo); // Decrements test_idx to 0, even though event listener isn't registered with foo's _leaflet_id
|
|
|
|
obj.removeEventListener('test', spy, foo2); // Doesn't get removed
|
|
|
|
|
|
|
|
obj.addEventListener('test', spy2, foo);
|
|
|
|
|
|
|
|
obj.fireEvent('test');
|
|
|
|
|
2013-04-04 06:22:45 +08:00
|
|
|
expect(spy.called).to.be(false);
|
2013-03-15 08:53:03 +08:00
|
|
|
});
|
2013-05-08 17:58:50 +08:00
|
|
|
|
2013-11-05 05:21:32 +08:00
|
|
|
it('correctly removes all listeners if given no fn', function () {
|
|
|
|
var obj = new Klass(),
|
|
|
|
spy = sinon.spy(),
|
|
|
|
foo = {},
|
|
|
|
foo2 = {},
|
|
|
|
foo3 = {};
|
|
|
|
|
|
|
|
obj.addEventListener('test', spy, foo2);
|
|
|
|
obj.addEventListener('test', spy, foo3);
|
|
|
|
|
|
|
|
obj.removeEventListener('test'); // Removes both of the above listeners
|
|
|
|
|
|
|
|
expect(obj.hasEventListeners('test')).to.be(false);
|
|
|
|
|
|
|
|
//Add and remove a listener
|
|
|
|
obj.addEventListener('test', spy, foo2);
|
|
|
|
obj.removeEventListener('test', spy, foo2);
|
2013-11-08 05:54:33 +08:00
|
|
|
|
2013-11-05 05:21:32 +08:00
|
|
|
expect(obj.hasEventListeners('test')).to.be(false);
|
|
|
|
});
|
|
|
|
|
2013-11-08 05:54:33 +08:00
|
|
|
it('makes sure an event is not triggered if a listener is removed during dispatch', function () {
|
2013-05-08 17:58:50 +08:00
|
|
|
var obj = new Klass(),
|
|
|
|
spy = sinon.spy();
|
2013-11-08 05:54:33 +08:00
|
|
|
|
|
|
|
obj.addEventListener('test', function () { obj.removeEventListener('test', spy); });
|
|
|
|
obj.addEventListener('test', spy);
|
|
|
|
obj.fireEvent('test');
|
2013-05-08 17:58:50 +08:00
|
|
|
|
|
|
|
expect(spy.called).to.be(false);
|
|
|
|
});
|
2010-09-04 00:16:29 +08:00
|
|
|
});
|
2013-02-05 00:31:14 +08:00
|
|
|
|
2013-11-08 05:54:33 +08:00
|
|
|
describe('#on, #off & #fire', function () {
|
2013-02-05 00:31:14 +08:00
|
|
|
|
2013-11-08 05:54:33 +08:00
|
|
|
it('works like #addEventListener && #removeEventListener', function () {
|
2010-09-04 00:16:29 +08:00
|
|
|
var obj = new Klass(),
|
2013-03-02 05:49:20 +08:00
|
|
|
spy = sinon.spy();
|
2013-02-05 00:31:14 +08:00
|
|
|
|
2010-09-04 00:16:29 +08:00
|
|
|
obj.on('test', spy);
|
2010-09-10 21:54:20 +08:00
|
|
|
obj.fire('test');
|
2013-02-05 00:31:14 +08:00
|
|
|
|
2013-03-02 05:49:20 +08:00
|
|
|
expect(spy.called).to.be(true);
|
2013-02-05 00:31:14 +08:00
|
|
|
|
2010-09-04 00:16:29 +08:00
|
|
|
obj.off('test', spy);
|
|
|
|
obj.fireEvent('test');
|
2013-02-05 00:31:14 +08:00
|
|
|
|
2013-03-02 05:49:20 +08:00
|
|
|
expect(spy.callCount).to.be.lessThan(2);
|
2010-09-04 00:16:29 +08:00
|
|
|
});
|
2013-02-05 00:31:14 +08:00
|
|
|
|
2013-11-08 05:54:33 +08:00
|
|
|
it('does not override existing methods with the same name', function () {
|
2013-03-02 05:49:20 +08:00
|
|
|
var spy1 = sinon.spy(),
|
|
|
|
spy2 = sinon.spy(),
|
|
|
|
spy3 = sinon.spy();
|
2013-02-05 00:31:14 +08:00
|
|
|
|
2010-09-04 00:16:29 +08:00
|
|
|
var Klass2 = L.Class.extend({
|
|
|
|
includes: L.Mixin.Events,
|
|
|
|
on: spy1,
|
2010-09-10 21:54:20 +08:00
|
|
|
off: spy2,
|
|
|
|
fire: spy3
|
2010-09-04 00:16:29 +08:00
|
|
|
});
|
2013-02-05 00:31:14 +08:00
|
|
|
|
2010-09-04 00:16:29 +08:00
|
|
|
var obj = new Klass2();
|
2013-02-05 00:31:14 +08:00
|
|
|
|
2010-09-04 00:16:29 +08:00
|
|
|
obj.on();
|
2013-03-02 05:49:20 +08:00
|
|
|
expect(spy1.called).to.be(true);
|
2013-02-05 00:31:14 +08:00
|
|
|
|
2010-09-04 00:16:29 +08:00
|
|
|
obj.off();
|
2013-03-02 05:49:20 +08:00
|
|
|
expect(spy2.called).to.be(true);
|
2013-02-05 00:31:14 +08:00
|
|
|
|
2010-09-10 21:54:20 +08:00
|
|
|
obj.fire();
|
2013-03-02 05:49:20 +08:00
|
|
|
expect(spy3.called).to.be(true);
|
2010-09-04 00:16:29 +08:00
|
|
|
});
|
|
|
|
});
|
2013-04-19 22:23:45 +08:00
|
|
|
|
2013-11-08 05:54:33 +08:00
|
|
|
describe("#clearEventListeners", function () {
|
|
|
|
it("clears all registered listeners on an object", function () {
|
2013-04-15 12:20:10 +08:00
|
|
|
var spy = sinon.spy(),
|
2013-11-08 05:54:33 +08:00
|
|
|
obj = new Klass(),
|
2013-04-16 01:57:35 +08:00
|
|
|
otherObj = new Klass();
|
2013-04-15 12:20:10 +08:00
|
|
|
|
|
|
|
obj.on('test', spy, obj);
|
|
|
|
obj.on('testTwo', spy);
|
2013-04-16 01:57:35 +08:00
|
|
|
obj.on('test', spy, otherObj);
|
|
|
|
obj.off();
|
2013-04-15 12:20:10 +08:00
|
|
|
|
|
|
|
obj.fire('test');
|
|
|
|
|
|
|
|
expect(spy.called).to.be(false);
|
|
|
|
});
|
|
|
|
});
|
2013-04-19 22:23:45 +08:00
|
|
|
|
2013-11-08 05:54:33 +08:00
|
|
|
describe('#once', function () {
|
|
|
|
it('removes event listeners after first trigger', function () {
|
2013-04-19 22:23:45 +08:00
|
|
|
var obj = new Klass(),
|
|
|
|
spy = sinon.spy();
|
|
|
|
|
|
|
|
obj.once('test', spy, obj);
|
|
|
|
obj.fire('test');
|
|
|
|
|
|
|
|
expect(spy.called).to.be(true);
|
|
|
|
|
|
|
|
obj.fire('test');
|
|
|
|
|
|
|
|
expect(spy.callCount).to.be.lessThan(2);
|
|
|
|
});
|
|
|
|
|
2013-11-08 05:54:33 +08:00
|
|
|
it('works with an object hash', function () {
|
2013-04-19 22:23:45 +08:00
|
|
|
var obj = new Klass(),
|
|
|
|
spy = sinon.spy(),
|
|
|
|
otherSpy = sinon.spy();
|
|
|
|
|
|
|
|
obj.once({
|
|
|
|
'test': spy,
|
|
|
|
otherTest: otherSpy
|
|
|
|
}, obj);
|
|
|
|
|
|
|
|
obj.fire('test');
|
|
|
|
obj.fire('otherTest');
|
|
|
|
|
|
|
|
expect(spy.called).to.be(true);
|
|
|
|
expect(otherSpy.called).to.be(true);
|
|
|
|
|
|
|
|
obj.fire('test');
|
|
|
|
obj.fire('otherTest');
|
|
|
|
|
|
|
|
expect(spy.callCount).to.be.lessThan(2);
|
|
|
|
expect(otherSpy.callCount).to.be.lessThan(2);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("doesn't call listeners to events that have been removed", function () {
|
|
|
|
var obj = new Klass(),
|
|
|
|
spy = sinon.spy();
|
|
|
|
|
|
|
|
obj.once('test', spy, obj);
|
|
|
|
obj.off('test', spy, obj);
|
|
|
|
|
|
|
|
obj.fire('test');
|
|
|
|
|
|
|
|
expect(spy.called).to.be(false);
|
|
|
|
});
|
|
|
|
|
2013-11-08 05:54:33 +08:00
|
|
|
it('works if called from a context that doesnt implement #Events', function () {
|
2013-04-19 22:23:45 +08:00
|
|
|
var obj = new Klass(),
|
|
|
|
spy = sinon.spy(),
|
|
|
|
foo = {};
|
|
|
|
|
|
|
|
obj.once('test', spy, foo);
|
|
|
|
|
|
|
|
obj.fire('test');
|
|
|
|
|
|
|
|
expect(spy.called).to.be(true);
|
|
|
|
});
|
|
|
|
});
|
2013-02-05 00:31:14 +08:00
|
|
|
});
|