diff options
| author | Jacob Thornton <[email protected]> | 2012-02-18 23:29:58 -0800 |
|---|---|---|
| committer | Jacob Thornton <[email protected]> | 2012-02-18 23:29:58 -0800 |
| commit | 3d58b4622671bc51c22c857641db3b988e73632a (patch) | |
| tree | c2449b661858c5ab4846ad40f94648a1833033b6 /js/tests/unit/bootstrap-button.js | |
| parent | 7ec09d0db9b1117d708682a08efaa55045e6926e (diff) | |
| download | bootstrap-3d58b4622671bc51c22c857641db3b988e73632a.tar.xz bootstrap-3d58b4622671bc51c22c857641db3b988e73632a.zip | |
fix bootstrap-button toggle regression + tests
Diffstat (limited to 'js/tests/unit/bootstrap-button.js')
| -rw-r--r-- | js/tests/unit/bootstrap-button.js | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/js/tests/unit/bootstrap-button.js b/js/tests/unit/bootstrap-button.js index 8aed857e1..03c4a8e9d 100644 --- a/js/tests/unit/bootstrap-button.js +++ b/js/tests/unit/bootstrap-button.js @@ -45,10 +45,33 @@ $(function () { }) test("should toggle active", function () { - var btn = $('<button class="btn" data-loading-text="fat">mdo</button>') + var btn = $('<button class="btn">mdo</button>') ok(!btn.hasClass('active'), 'btn does not have active class') btn.button('toggle') ok(btn.hasClass('active'), 'btn has class active') }) + test("should toggle active when btn children are clicked", function () { + var btn = $('<button class="btn" data-toggle="button">mdo</button>') + , inner = $('<i></i>') + btn + .append(inner) + .appendTo($('#qunit-fixture')) + ok(!btn.hasClass('active'), 'btn does not have active class') + inner.click() + ok(btn.hasClass('active'), 'btn has class active') + }) + + test("should toggle active when btn children are clicked within btn-group", function () { + var btngroup = $('<div class="btn-group" data-toggle="buttons-checkbox"></div>') + , btn = $('<button class="btn">fat</button>') + , inner = $('<i></i>') + btngroup + .append(btn.append(inner)) + .appendTo($('#qunit-fixture')) + ok(!btn.hasClass('active'), 'btn does not have active class') + inner.click() + ok(btn.hasClass('active'), 'btn has class active') + }) + })
\ No newline at end of file |
