mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-17 06:20:26 +00:00
20 lines
387 B
JavaScript
20 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);
|