8f31310623528337437c352c343296147e11f637
[platform/framework/web/web-ui-fw.git] / libs / js / jquery-mobile-1.1.0 / tests / unit / kitchensink / kitchensink_core.js
1 /*
2  * Kitchen Sink Tests
3  */
4 (function($){
5         module("kitchen sink class test");
6
7         test( "Nothing on the page has a class that contains `undefined`.", function(){
8                 var undefClass = $(".ui-page").find("[class*='undefined']");
9
10                 ok( undefClass.length == 0 );
11         });
12
13 })(jQuery);