mousewheel-tests.js revision 5e9c49b282c4d23f03b68b6f53f7c08cbed540e5
YUI.add('mousewheel-tests', function(Y) {
var suite = new Y.Test.Suite('mousewheel Event'),
Assert = Y.Assert,
noop = function() {},
node = Y.one(document);
suite.add(new Y.Test.Case({
name: 'Mousewheel',
'test: attach': function() {
var handle = node.on('mousewheel', noop);
Assert.isObject(handle.evt);
}
}));
Y.Test.Runner.add(suite);
});