5 test("should provide no conflict", function () {
6 var button = $.fn.button.noConflict()
7 ok(!$.fn.button, 'button was set back to undefined (org value)')
11 test("should be defined on jquery object", function () {
12 ok($(document.body).button, 'button method is defined')
15 test("should return element", function () {
16 ok($(document.body).button()[0] == document.body, 'document.body returned')
19 test("should return set state to loading", function () {
20 var btn = $('<button class="btn" data-loading-text="fat">mdo</button>')
21 equal(btn.html(), 'mdo', 'btn text equals mdo')
23 equal(btn.html(), 'fat', 'btn text equals fat')
25 setTimeout(function () {
26 ok(btn.attr('disabled'), 'btn is disabled')
27 ok(btn.hasClass('disabled'), 'btn has disabled class')
32 test("should return reset state", function () {
33 var btn = $('<button class="btn" data-loading-text="fat">mdo</button>')
34 equal(btn.html(), 'mdo', 'btn text equals mdo')
36 equal(btn.html(), 'fat', 'btn text equals fat')
38 setTimeout(function () {
39 ok(btn.attr('disabled'), 'btn is disabled')
40 ok(btn.hasClass('disabled'), 'btn has disabled class')
44 equal(btn.html(), 'mdo', 'btn text equals mdo')
45 setTimeout(function () {
46 ok(!btn.attr('disabled'), 'btn is not disabled')
47 ok(!btn.hasClass('disabled'), 'btn does not have disabled class')
54 test("should toggle active", function () {
55 var btn = $('<button class="btn">mdo</button>')
56 ok(!btn.hasClass('active'), 'btn does not have active class')
58 ok(btn.hasClass('active'), 'btn has class active')
61 test("should toggle active when btn children are clicked", function () {
62 var btn = $('<button class="btn" data-toggle="button">mdo</button>')
63 , inner = $('<i></i>')
66 .appendTo($('#qunit-fixture'))
67 ok(!btn.hasClass('active'), 'btn does not have active class')
69 ok(btn.hasClass('active'), 'btn has class active')
72 test("should toggle active when btn children are clicked within btn-group", function () {
73 var btngroup = $('<div class="btn-group" data-toggle="buttons"></div>')
74 , btn = $('<button class="btn">fat</button>')
75 , inner = $('<i></i>')
77 .append(btn.append(inner))
78 .appendTo($('#qunit-fixture'))
79 ok(!btn.hasClass('active'), 'btn does not have active class')
81 ok(btn.hasClass('active'), 'btn has class active')
84 test("should check for closest matching toggle", function () {
85 var group = '<div class="btn-group" data-toggle="buttons">' +
86 '<label class="btn btn-primary active">' +
87 '<input type="radio" name="options" id="option1" checked="true"> Option 1' +
89 '<label class="btn btn-primary">' +
90 '<input type="radio" name="options" id="option2"> Option 2' +
92 '<label class="btn btn-primary">' +
93 '<input type="radio" name="options" id="option3"> Option 3' +
99 var btn1 = $(group.children()[0])
100 var btn2 = $(group.children()[1])
101 var btn3 = $(group.children()[2])
103 group.appendTo($('#qunit-fixture'))
105 ok(btn1.hasClass('active'), 'btn1 has active class')
106 ok(btn1.find('input').prop('checked'), 'btn1 is checked')
107 ok(!btn2.hasClass('active'), 'btn2 does not have active class')
108 ok(!btn2.find('input').prop('checked'), 'btn2 is not checked')
109 btn2.find('input').click()
110 ok(!btn1.hasClass('active'), 'btn1 does not have active class')
111 ok(!btn1.find('input').prop('checked'), 'btn1 is checked')
112 ok(btn2.hasClass('active'), 'btn2 has active class')
113 ok(btn2.find('input').prop('checked'), 'btn2 is checked')
115 btn2.find('input').click() /* clicking an already checked radio should not un-check it */
116 ok(!btn1.hasClass('active'), 'btn1 does not have active class')
117 ok(!btn1.find('input').prop('checked'), 'btn1 is checked')
118 ok(btn2.hasClass('active'), 'btn2 has active class')
119 ok(btn2.find('input').prop('checked'), 'btn2 is checked')