instances-tests.js revision 038c85d1f8981a1d1479152b76a7c47ff219417d
YUI.add('instances-tests', function(Y) {
var suite = new Y.Test.Suite('IO Instances Tests');
suite.add(new Y.Test.Case({
name: 'Static Instance of Y.IO',
'test: static': function() {
var s = Y.io(Y.IO.URLS.get + '?test=static', {});
Y.Assert.areEqual('io:0', s.io._uid || s.io.uid);
}
}));
suite.add(new Y.Test.Case({
name: 'Compare IO Instances',
'test: instances': function() {
var instance1 = new Y.IO(),
instance2 = new Y.IO();
Y.Assert.areNotEqual(instance1, instance2);
}
}));
suite.add(new Y.Test.Case({
name: 'IO Instance is an Object',
'test: is an Object': function() {
var instance1 = new Y.IO();
Y.Assert.isObject(instance1);
}
}));
suite.add(new Y.Test.Case({
name: 'Instance of Y.IO',
'test: instanceOf': function() {
var instance1 = new Y.IO();
Y.Assert.isInstanceOf(Y.IO, instance1);
}
}));
Y.Test.Runner.add(suite);
});