mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-04-05 15:10:59 +00:00
16 lines
No EOL
422 B
JavaScript
16 lines
No EOL
422 B
JavaScript
/*
|
|
* mobile widget unit tests
|
|
*/
|
|
|
|
(function( $ ) {
|
|
test( "getting data attributes from creation options", function(){
|
|
expect( 1 );
|
|
var result, expected = "bizzle";
|
|
|
|
$.mobile.widget.prototype.options = { "fooBar" : true };
|
|
$.mobile.widget.prototype.element = $("<div data-foo-bar=" + expected + ">");
|
|
|
|
result = $.mobile.widget.prototype._getCreateOptions();
|
|
same(result["fooBar"], expected);
|
|
});
|
|
})(jQuery); |