/* INCLUDE: old: js/6alib/core.js old: js/6alib/dom.js old: js/6alib/json.js old: js/6alib/httpreq.js old: js/6alib/hourglass.js old: js/6alib/inputcomplete.js old: js/6alib/datasource.js old: js/6alib/selectable_table.js old: js/6alib/checkallbutton.js old: js/6alib/ippu.js old: js/lj_ippu.js old: js/6alib/template.js old: js/userpicselect.js old: js/6alib/view.js old: js/ljwidget.js */ module( "old" ); test( "misc utils", function() { expect(5); var o; o = new Hourglass(); o.init(); ok( o, "Hourglass" ); o = new InputComplete(); o.init(); ok( o, "InputComplete" ); o = new InputCompleteData(); o.init(); ok( o, "InputCompleteData" ); o = new DataSource(); o.init(); ok( o, "DataSource" ); o = new SelectableTable(); o.init({ table: $("userpicselect_t") }); ok( o, "SelectableTable" ); }); test( "UserpicSelect", function() { expect(4); var o; o = new IPPU(); o.init(); ok( o, "IPPU" ); o = new LJ_IPPU(); o.init(); ok( o, "LJ_IPPU" ); o = new Template(); o.init(); ok( o, "Template" ); o = new UserpicSelect(); o.init(); ok( o, "UserpicSelect" ); }); test( "Widget", function() { expect(1); var o; o = new LJWidget(); o.init(); ok( o, "LJWidget" ); }); test( "Check all", function() { expect(1); var o; o = new CheckallButton(); o.init({ button: $("checkall") }); ok( o, "CheckallButton" ); }); test( "array tests", function () { expect(4); var array = new Array(); array.push( "a" ); array.push( "b" ); array.push( "c" ); equals( 3, array.length, "Check array size" ); array.forEach(function(element, index, array) { equals( element, array[index] ); }); }); module( "jquery" ); test( "array tests", function () { expect(4); var array = new Array(); array.push( "a" ); array.push( "b" ); array.push( "c" ); equals( 3, array.length, "Check array size" ); $.each( array, function(index, element) { equals( element, array[index] ); }); }); module( "*libfunctions" ); test("object tests", function() { // expect(1); var o = new Object(); o["a"] = "apple"; o["b"] = "banana"; o["c"] = "cat eating a banana"; var count = 0; for( var key in o ) { count++; } equals( 3, count ); o = new Object(); count = 0; for ( var key in o ) { count++; } equals( 0, count ); });