jquery-mobile/tests/unit/fetchlink/fetchlink_core.js

20 lines
387 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* fetchlink unit tests
*/
(function($){
module( 'jquery.mobile.fetchlink.js' );
test( "This test knows what the hell Im 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);