lang.html revision 0771d781138a507b3e657573703f511291640bf3
705cea35a8f798340ac947713ab97791be521b52Mukund Sivaraman<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
base: "/build/",
logExclude: {Dom: true, Selector: true, Node: true, attribute: true, base: true, event: true, widget: true}
Y.log(typeof NaN);
var button = Y.get('#btnRun'),
Assert = Y.Assert;
button.set("disabled", false);
Y.on("click", function() {
// var myConsole = new Y.Console().render();
var testObject = new Y.Test.Case({
Assert.isFalse(Y.Lang.isNumber('123.123'), "the string '123.123' is not a number, even though it can be cast into one");
Assert.isFalse(Y.Lang.isNumber(1/0), "undefined numbers and infinity are not numbers we want to use");
Assert.isFalse(Y.Lang.isObject(null), "null should return false even though it technically is an object");
Y.Test.Runner.add(testObject);