aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit
diff options
context:
space:
mode:
authorRichard Gibson <richard.gibson@gmail.com>2012-11-01 17:32:08 -0400
committerRichard Gibson <richard.gibson@gmail.com>2012-11-01 17:32:08 -0400
commit3f515045808dda2b4320a82894e875eb61d255e2 (patch)
tree1dc3c8a2420fc5822e330f06a1a5b95e3dd2c3fe /test/unit
parent395f1da76ba9faeb2f72548c28da228474a2434c (diff)
downloadjquery-3f515045808dda2b4320a82894e875eb61d255e2.tar.gz
jquery-3f515045808dda2b4320a82894e875eb61d255e2.zip
No ticket: remove test suite external dependencies
Diffstat (limited to 'test/unit')
-rw-r--r--test/unit/ajax.js7
-rw-r--r--test/unit/attributes.js2
-rw-r--r--test/unit/core.js14
-rw-r--r--test/unit/css.js2
4 files changed, 13 insertions, 12 deletions
diff --git a/test/unit/ajax.js b/test/unit/ajax.js
index c5185efb3..9367320d2 100644
--- a/test/unit/ajax.js
+++ b/test/unit/ajax.js
@@ -621,7 +621,7 @@ if ( jQuery.ajax && ( !isLocal || hasPHP ) ) {
jQuery.ajax({
dataType: "jsonp",
- url: loc.protocol + "//somewebsitethatdoesnotexist-656329477541.com:" + ( loc.port || 80 ),
+ url: loc.protocol + "//example.invalid:" + ( loc.port || 80 ),
beforeSend: function( _, s ) {
ok( s.crossDomain, "Test different hostnames are detected as cross-domain" );
return false;
@@ -2377,7 +2377,8 @@ if ( jQuery.ajax && ( !isLocal || hasPHP ) ) {
var i = 1;
jQuery.ajax({
- url: "http://somewebsitethatdoesnotexist-67864863574657654.com",
+ // see RFC 2606
+ url: "http://example.invalid",
success: function() {
ok( false, "success" );
},
@@ -2398,7 +2399,7 @@ if ( jQuery.ajax && ( !isLocal || hasPHP ) ) {
var i = 1;
jQuery.ajax({
- url: "http://www.google.com",
+ url: "http://" + externalHost,
success: function() {
ok( false, "success" );
},
diff --git a/test/unit/attributes.js b/test/unit/attributes.js
index 59b34a7a4..f171e896e 100644
--- a/test/unit/attributes.js
+++ b/test/unit/attributes.js
@@ -119,7 +119,7 @@ test( "attr(String)", function() {
equal( jQuery( option ).attr("selected"), "selected", "Make sure that a single option is selected, even when in an optgroup." );
- var $img = jQuery("<img style='display:none' width='215' height='53' src='http://static.jquery.com/files/rocker/images/logo_jquery_215x53.gif'/>").appendTo("body");
+ var $img = jQuery("<img style='display:none' width='215' height='53' src='data/1x1.jpg'/>").appendTo("body");
equal( $img.attr("width"), "215", "Retrieve width attribute an an element with display:none." );
equal( $img.attr("height"), "53", "Retrieve height attribute an an element with display:none." );
diff --git a/test/unit/core.js b/test/unit/core.js
index 2e386b0e8..3d22b3d9e 100644
--- a/test/unit/core.js
+++ b/test/unit/core.js
@@ -218,16 +218,16 @@ test("noConflict", function() {
var $$ = jQuery;
- equal( jQuery, jQuery.noConflict(), "noConflict returned the jQuery object" );
- equal( window["jQuery"], $$, "Make sure jQuery wasn't touched." );
- equal( window["$"], original$, "Make sure $ was reverted." );
+ strictEqual( jQuery, jQuery.noConflict(), "noConflict returned the jQuery object" );
+ strictEqual( window["jQuery"], $$, "Make sure jQuery wasn't touched." );
+ strictEqual( window["$"], original$, "Make sure $ was reverted." );
jQuery = $ = $$;
- equal( jQuery.noConflict(true), $$, "noConflict returned the jQuery object" );
- equal( window["jQuery"], originaljQuery, "Make sure jQuery was reverted." );
- equal( window["$"], original$, "Make sure $ was reverted." );
- ok( $$("#qunit-fixture").html("test"), "Make sure that jQuery still works." );
+ strictEqual( jQuery.noConflict(true), $$, "noConflict returned the jQuery object" );
+ strictEqual( window["jQuery"], originaljQuery, "Make sure jQuery was reverted." );
+ strictEqual( window["$"], original$, "Make sure $ was reverted." );
+ ok( $$().pushStack([]), "Make sure that jQuery still works." );
window["jQuery"] = jQuery = $$;
});
diff --git a/test/unit/css.js b/test/unit/css.js
index 3dc9653ba..94d972793 100644
--- a/test/unit/css.js
+++ b/test/unit/css.js
@@ -746,7 +746,7 @@ test("widows & orphans #8936", function () {
test("can't get css for disconnected in IE<9, see #10254 and #8388", function() {
expect( 2 );
- var span = jQuery( "<span/>" ).css( "background-image", "url(http://static.jquery.com/files/rocker/images/logo_jquery_215x53.gif)" );
+ var span = jQuery( "<span/>" ).css( "background-image", "url(data/1x1.jpg)" );
notEqual( span.css( "background-image" ), null, "can't get background-image in IE<9, see #10254" );
var div = jQuery( "<div/>" ).css( "top", 10 );