2011-12-20 21:02:47 -05:00
|
|
|
$(function () {
|
|
|
|
|
|
|
|
module("bootstrap-collapse")
|
|
|
|
|
2012-12-07 17:06:01 -05:00
|
|
|
test("should provide no conflict", function () {
|
|
|
|
var collapse = $.fn.collapse.noConflict()
|
|
|
|
ok(!$.fn.collapse, 'collapse was set back to undefined (org value)')
|
|
|
|
$.fn.collapse = collapse
|
|
|
|
})
|
|
|
|
|
2011-12-20 21:02:47 -05:00
|
|
|
test("should be defined on jquery object", function () {
|
|
|
|
ok($(document.body).collapse, 'collapse method is defined')
|
|
|
|
})
|
|
|
|
|
|
|
|
test("should return element", function () {
|
|
|
|
ok($(document.body).collapse()[0] == document.body, 'document.body returned')
|
|
|
|
})
|
|
|
|
|
|
|
|
test("should show a collapsed element", function () {
|
|
|
|
var el = $('<div class="collapse"></div>').collapse('show')
|
|
|
|
ok(el.hasClass('in'), 'has class in')
|
|
|
|
ok(/height/.test(el.attr('style')), 'has height set')
|
|
|
|
})
|
|
|
|
|
|
|
|
test("should hide a collapsed element", function () {
|
|
|
|
var el = $('<div class="collapse"></div>').collapse('hide')
|
|
|
|
ok(!el.hasClass('in'), 'does not have class in')
|
|
|
|
ok(/height/.test(el.attr('style')), 'has height set')
|
|
|
|
})
|
|
|
|
|
2012-03-24 21:20:09 -04:00
|
|
|
test("should not fire shown when show is prevented", function () {
|
|
|
|
$.support.transition = false
|
2012-06-02 20:28:38 -04:00
|
|
|
stop()
|
2012-03-24 21:20:09 -04:00
|
|
|
$('<div class="collapse"/>')
|
|
|
|
.bind('show', function (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
ok(true);
|
|
|
|
start();
|
|
|
|
})
|
|
|
|
.bind('shown', function () {
|
|
|
|
ok(false);
|
|
|
|
})
|
|
|
|
.collapse('show')
|
|
|
|
})
|
|
|
|
|
2012-04-24 21:06:41 -04:00
|
|
|
test("should reset style to auto after finishing opening collapse", function () {
|
|
|
|
$.support.transition = false
|
2012-06-02 20:28:38 -04:00
|
|
|
stop()
|
2012-04-24 21:06:41 -04:00
|
|
|
$('<div class="collapse" style="height: 0px"/>')
|
|
|
|
.bind('show', function () {
|
|
|
|
ok(this.style.height == '0px')
|
|
|
|
})
|
|
|
|
.bind('shown', function () {
|
|
|
|
ok(this.style.height == 'auto')
|
|
|
|
start()
|
|
|
|
})
|
|
|
|
.collapse('show')
|
|
|
|
})
|
|
|
|
|
2012-06-02 20:28:38 -04:00
|
|
|
test("should add active class to target when collapse shown", function () {
|
|
|
|
$.support.transition = false
|
|
|
|
stop()
|
|
|
|
|
|
|
|
var target = $('<a data-toggle="collapse" href="#test1"></a>')
|
|
|
|
.appendTo($('#qunit-fixture'))
|
|
|
|
|
|
|
|
var collapsible = $('<div id="test1"></div>')
|
|
|
|
.appendTo($('#qunit-fixture'))
|
|
|
|
.on('show', function () {
|
|
|
|
ok(!target.hasClass('collapsed'))
|
|
|
|
start()
|
|
|
|
})
|
|
|
|
|
|
|
|
target.click()
|
|
|
|
})
|
|
|
|
|
|
|
|
test("should remove active class to target when collapse hidden", function () {
|
|
|
|
$.support.transition = false
|
|
|
|
stop()
|
|
|
|
|
|
|
|
var target = $('<a data-toggle="collapse" href="#test1"></a>')
|
|
|
|
.appendTo($('#qunit-fixture'))
|
|
|
|
|
|
|
|
var collapsible = $('<div id="test1" class="in"></div>')
|
|
|
|
.appendTo($('#qunit-fixture'))
|
|
|
|
.on('hide', function () {
|
|
|
|
ok(target.hasClass('collapsed'))
|
|
|
|
start()
|
|
|
|
})
|
|
|
|
|
|
|
|
target.click()
|
|
|
|
})
|
|
|
|
|
2013-04-23 03:34:27 -04:00
|
|
|
})
|