1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/bootstrap-source/bootstrap-3.0.3/js/tests/unit/tab.js Fri Dec 20 22:49:16 2013 +0100
1.3 @@ -0,0 +1,86 @@
1.4 +$(function () {
1.5 +
1.6 + module("tabs")
1.7 +
1.8 + test("should provide no conflict", function () {
1.9 + var tab = $.fn.tab.noConflict()
1.10 + ok(!$.fn.tab, 'tab was set back to undefined (org value)')
1.11 + $.fn.tab = tab
1.12 + })
1.13 +
1.14 + test("should be defined on jquery object", function () {
1.15 + ok($(document.body).tab, 'tabs method is defined')
1.16 + })
1.17 +
1.18 + test("should return element", function () {
1.19 + ok($(document.body).tab()[0] == document.body, 'document.body returned')
1.20 + })
1.21 +
1.22 + test("should activate element by tab id", function () {
1.23 + var tabsHTML =
1.24 + '<ul class="tabs">'
1.25 + + '<li><a href="#home">Home</a></li>'
1.26 + + '<li><a href="#profile">Profile</a></li>'
1.27 + + '</ul>'
1.28 +
1.29 + $('<ul><li id="home"></li><li id="profile"></li></ul>').appendTo("#qunit-fixture")
1.30 +
1.31 + $(tabsHTML).find('li:last a').tab('show')
1.32 + equal($("#qunit-fixture").find('.active').attr('id'), "profile")
1.33 +
1.34 + $(tabsHTML).find('li:first a').tab('show')
1.35 + equal($("#qunit-fixture").find('.active').attr('id'), "home")
1.36 + })
1.37 +
1.38 + test("should activate element by tab id", function () {
1.39 + var pillsHTML =
1.40 + '<ul class="pills">'
1.41 + + '<li><a href="#home">Home</a></li>'
1.42 + + '<li><a href="#profile">Profile</a></li>'
1.43 + + '</ul>'
1.44 +
1.45 + $('<ul><li id="home"></li><li id="profile"></li></ul>').appendTo("#qunit-fixture")
1.46 +
1.47 + $(pillsHTML).find('li:last a').tab('show')
1.48 + equal($("#qunit-fixture").find('.active').attr('id'), "profile")
1.49 +
1.50 + $(pillsHTML).find('li:first a').tab('show')
1.51 + equal($("#qunit-fixture").find('.active').attr('id'), "home")
1.52 + })
1.53 +
1.54 +
1.55 + test("should not fire closed when close is prevented", function () {
1.56 + $.support.transition = false
1.57 + stop();
1.58 + $('<div class="tab"/>')
1.59 + .on('show.bs.tab', function (e) {
1.60 + e.preventDefault();
1.61 + ok(true);
1.62 + start();
1.63 + })
1.64 + .on('shown.bs.tab', function () {
1.65 + ok(false);
1.66 + })
1.67 + .tab('show')
1.68 + })
1.69 +
1.70 + test("show and shown events should reference correct relatedTarget", function () {
1.71 + var dropHTML =
1.72 + '<ul class="drop">'
1.73 + + '<li class="dropdown"><a data-toggle="dropdown" href="#">1</a>'
1.74 + + '<ul class="dropdown-menu">'
1.75 + + '<li><a href="#1-1" data-toggle="tab">1-1</a></li>'
1.76 + + '<li><a href="#1-2" data-toggle="tab">1-2</a></li>'
1.77 + + '</ul>'
1.78 + + '</li>'
1.79 + + '</ul>'
1.80 +
1.81 + $(dropHTML).find('ul>li:first a').tab('show').end()
1.82 + .find('ul>li:last a').on('show', function(event){
1.83 + equal(event.relatedTarget.hash, "#1-1")
1.84 + }).on('shown', function(event){
1.85 + equal(event.relatedTarget.hash, "#1-1")
1.86 + }).tab('show')
1.87 + })
1.88 +
1.89 +})