mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-05-03 20:34:42 +00:00
21 lines
387 B
JavaScript
21 lines
387 B
JavaScript
|
|
/*
|
|||
|
|
* fetchlink unit tests
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
(function($){
|
|||
|
|
|
|||
|
|
module( 'jquery.mobile.fetchlink.js' );
|
|||
|
|
|
|||
|
|
test( "This test knows what the hell I’m talking about.", function(){
|
|||
|
|
ok( $( "#typeless-input" ).hasClass( "ui-input-text" ) );
|
|||
|
|
});
|
|||
|
|
|
|||
|
|
test( "This test does nothing.", function(){
|
|||
|
|
expect( 2 );
|
|||
|
|
|
|||
|
|
ok( true, "This is true.")
|
|||
|
|
equal( false, false, "False equals false." );
|
|||
|
|
});
|
|||
|
|
|
|||
|
|
})(jQuery);
|