]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
QUnit.equals() is deprecated; use QUnit.equal() instead 11239/head
authorChris Rebert <code@rebertia.com>
Fri, 25 Oct 2013 21:14:30 +0000 (14:14 -0700)
committerChris Rebert <code@rebertia.com>
Fri, 25 Oct 2013 21:14:30 +0000 (14:14 -0700)
js/tests/unit/button.js
js/tests/unit/popover.js
js/tests/unit/tab.js
js/tests/unit/tooltip.js

index 41ddb5c2fdd0bb375f8632ca0ac6ebbbd256d195..16284e0ceda0fb4f1b4d08e11309cdb3ac069b50 100644 (file)
@@ -18,9 +18,9 @@ $(function () {
 
       test("should return set state to loading", function () {
         var btn = $('<button class="btn" data-loading-text="fat">mdo</button>')
-        equals(btn.html(), 'mdo', 'btn text equals mdo')
+        equal(btn.html(), 'mdo', 'btn text equals mdo')
         btn.button('loading')
-        equals(btn.html(), 'fat', 'btn text equals fat')
+        equal(btn.html(), 'fat', 'btn text equals fat')
         stop()
         setTimeout(function () {
           ok(btn.attr('disabled'), 'btn is disabled')
@@ -31,9 +31,9 @@ $(function () {
 
       test("should return reset state", function () {
         var btn = $('<button class="btn" data-loading-text="fat">mdo</button>')
-        equals(btn.html(), 'mdo', 'btn text equals mdo')
+        equal(btn.html(), 'mdo', 'btn text equals mdo')
         btn.button('loading')
-        equals(btn.html(), 'fat', 'btn text equals fat')
+        equal(btn.html(), 'fat', 'btn text equals fat')
         stop()
         setTimeout(function () {
           ok(btn.attr('disabled'), 'btn is disabled')
@@ -41,7 +41,7 @@ $(function () {
           start()
           stop()
           btn.button('reset')
-          equals(btn.html(), 'mdo', 'btn text equals mdo')
+          equal(btn.html(), 'mdo', 'btn text equals mdo')
           setTimeout(function () {
             ok(!btn.attr('disabled'), 'btn is not disabled')
             ok(!btn.hasClass('disabled'), 'btn does not have disabled class')
index 767d79864b73f0f6351cb03600c34baa69f1f825..c9f7d63a76e234a3f3f4b23edfebea8ada52ecb3 100644 (file)
@@ -53,8 +53,8 @@ $(function () {
         popover.popover('show')
 
         ok($('.popover').length, 'popover was inserted')
-        equals($('.popover .popover-title').text(), '@fat', 'title correctly inserted')
-        equals($('.popover .popover-content').text(), 'loves writing tests (╯°□°)╯︵ ┻━┻', 'content correctly inserted')
+        equal($('.popover .popover-title').text(), '@fat', 'title correctly inserted')
+        equal($('.popover .popover-content').text(), 'loves writing tests (╯°□°)╯︵ ┻━┻', 'content correctly inserted')
 
         popover.popover('hide')
         ok(!$('.popover').length, 'popover was removed')
@@ -69,8 +69,8 @@ $(function () {
           .popover('show')
 
         ok($('.popover').length, 'popover was inserted')
-        equals($('.popover .popover-title').text(), '@mdo', 'title correctly inserted')
-        equals($('.popover .popover-content').text(), "loves data attributes (づ。◕‿‿◕。)づ ︵ ┻━┻", 'content correctly inserted')
+        equal($('.popover .popover-title').text(), '@mdo', 'title correctly inserted')
+        equal($('.popover .popover-content').text(), "loves data attributes (づ。◕‿‿◕。)づ ︵ ┻━┻", 'content correctly inserted')
 
         popover.popover('hide')
         ok(!$('.popover').length, 'popover was removed')
@@ -89,8 +89,8 @@ $(function () {
           .popover('show')
 
         ok($('.popover').length, 'popover was inserted')
-        equals($('.popover .popover-title').text(), '@mdo', 'title correctly inserted')
-        equals($('.popover .popover-content').text(), "loves data attributes (づ。◕‿‿◕。)づ ︵ ┻━┻", 'content correctly inserted')
+        equal($('.popover .popover-title').text(), '@mdo', 'title correctly inserted')
+        equal($('.popover .popover-content').text(), "loves data attributes (づ。◕‿‿◕。)づ ︵ ┻━┻", 'content correctly inserted')
 
         popover.popover('hide')
         ok(!$('.popover').length, 'popover was removed')
index aede32abb1878b193aaa819e69e751c693a7df23..0db7cdb5b5ba67068cb8d2398fbb46418888ed78 100644 (file)
@@ -26,10 +26,10 @@ $(function () {
         $('<ul><li id="home"></li><li id="profile"></li></ul>').appendTo("#qunit-fixture")
 
         $(tabsHTML).find('li:last a').tab('show')
-        equals($("#qunit-fixture").find('.active').attr('id'), "profile")
+        equal($("#qunit-fixture").find('.active').attr('id'), "profile")
 
         $(tabsHTML).find('li:first a').tab('show')
-        equals($("#qunit-fixture").find('.active').attr('id'), "home")
+        equal($("#qunit-fixture").find('.active').attr('id'), "home")
       })
 
       test("should activate element by tab id", function () {
@@ -42,10 +42,10 @@ $(function () {
         $('<ul><li id="home"></li><li id="profile"></li></ul>').appendTo("#qunit-fixture")
 
         $(pillsHTML).find('li:last a').tab('show')
-        equals($("#qunit-fixture").find('.active').attr('id'), "profile")
+        equal($("#qunit-fixture").find('.active').attr('id'), "profile")
 
         $(pillsHTML).find('li:first a').tab('show')
-        equals($("#qunit-fixture").find('.active').attr('id'), "home")
+        equal($("#qunit-fixture").find('.active').attr('id'), "home")
       })
 
 
@@ -77,9 +77,9 @@ $(function () {
 
         $(dropHTML).find('ul>li:first a').tab('show').end()
           .find('ul>li:last a').on('show', function(event){
-            equals(event.relatedTarget.hash, "#1-1")
+            equal(event.relatedTarget.hash, "#1-1")
           }).on('shown', function(event){
-            equals(event.relatedTarget.hash, "#1-1")
+            equal(event.relatedTarget.hash, "#1-1")
           }).tab('show')
       })
 
index ed1bf54b338312be900f8cd49330861abeff8999..dc3ddd377e7c0d65e42389eb989a294182e26229 100644 (file)
@@ -29,7 +29,7 @@ $(function () {
 
       test("should add data attribute for referencing original title", function () {
         var tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"></a>').tooltip()
-        equals(tooltip.attr('data-original-title'), 'Another tooltip', 'original title preserved in data attribute')
+        equal(tooltip.attr('data-original-title'), 'Another tooltip', 'original title preserved in data attribute')
       })
 
       test("should place tooltips relative to placement option", function () {