yql.js revision fe7bc7ce1132b312b18ed314803e82e11064f334
var template = {
name: 'YQL Test',
setUp : function() {
},
tearDown : function() {
},
test_load: function() {
},
test_query: function() {
var test = this;
Y.YQL('select * from weather.forecast where location=62896', function(r) {
});
});
this.wait();
},
test_https: function() {
var test = this;
Y.YQL('select * from weather.forecast where location=62896', function(r) {
});
}, {}, {proto:"https"});
this.wait();
},
test_failed: function() {
var test = this;
Y.YQL('select * from weatherFOO.forecast where location=62896', function(r) {
});
});
this.wait();
},
test_escaped: function() {
var test = this;
Y.YQL("select * from html where url = \"http://instantwatcher.com/genres/506\" and xpath='//div[@id=\"titles\"]/ul/li/a'", function(r) {
});
});
this.wait();
}
};
});