0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-02 14:24:19 +01:00
Bootstrap/js/tests/unit/bootstrap-modal.js

85 lines
2.7 KiB
JavaScript
Raw Normal View History

$(function () {
module("bootstrap-modal")
test("should be defined on jquery object", function () {
2011-09-10 21:49:21 +02:00
var div = $("<div id='modal-test'></div>")
ok(div.modal, 'modal method is defined')
})
2011-09-10 21:49:21 +02:00
test("should return element", function () {
var div = $("<div id='modal-test'></div>")
ok(div.modal() == div, 'document.body returned')
$('#modal-test').remove()
})
2011-09-10 21:49:21 +02:00
test("should expose defaults var for settings", function () {
ok($.fn.modal.defaults, 'default object exposed')
})
2011-09-12 07:58:51 +02:00
test("should insert into dom when show method is called", function () {
2011-09-11 07:14:57 +02:00
stop()
2011-09-10 21:49:21 +02:00
$.support.transition = false
$("<div id='modal-test'></div>")
2011-09-12 07:58:51 +02:00
.bind("shown", function () {
2011-09-11 07:14:57 +02:00
ok($('#modal-test').length, 'modal insterted into dom')
$(this).remove()
2011-09-11 07:14:57 +02:00
start()
})
.modal("show")
})
2011-09-12 07:58:51 +02:00
test("should hide modal when hide is called", function () {
2011-09-11 07:14:57 +02:00
stop()
2011-09-10 21:49:21 +02:00
$.support.transition = false
$("<div id='modal-test'></div>")
2011-09-12 07:58:51 +02:00
.bind("shown", function () {
ok($('#modal-test').is(":visible"), 'modal visible')
2011-09-11 07:14:57 +02:00
ok($('#modal-test').length, 'modal insterted into dom')
$(this).modal("hide")
2011-09-11 07:14:57 +02:00
})
2011-09-12 07:58:51 +02:00
.bind("hidden", function() {
ok(!$('#modal-test').is(":visible"), 'modal hidden')
$('#modal-test').remove()
2011-09-11 07:14:57 +02:00
start()
})
2011-09-12 07:58:51 +02:00
.modal("show")
})
2011-09-10 21:49:21 +02:00
test("should toggle when toggle is called", function () {
2011-09-11 07:14:57 +02:00
stop()
$.support.transition = false
2011-09-10 21:49:21 +02:00
var div = $("<div id='modal-test'></div>")
2011-09-11 07:14:57 +02:00
div
2011-09-12 07:58:51 +02:00
.bind("shown", function () {
ok($('#modal-test').is(":visible"), 'modal visible')
2011-09-11 07:14:57 +02:00
ok($('#modal-test').length, 'modal insterted into dom')
2011-09-12 07:58:51 +02:00
div.modal("toggle")
2011-09-11 07:14:57 +02:00
})
2011-09-12 07:58:51 +02:00
.bind("hidden", function() {
ok(!$('#modal-test').is(":visible"), 'modal hidden')
2011-09-11 07:14:57 +02:00
div.remove()
start()
2011-09-11 07:14:57 +02:00
})
2011-09-12 07:58:51 +02:00
.modal("toggle")
})
test("should remove from dom when click [data-dismiss=modal]", function () {
2011-09-11 07:14:57 +02:00
stop()
2011-09-10 21:49:21 +02:00
$.support.transition = false
var div = $("<div id='modal-test'><span class='close' data-dismiss='modal'></span></div>")
2011-09-11 07:14:57 +02:00
div
2011-09-12 07:58:51 +02:00
.bind("shown", function () {
ok($('#modal-test').is(":visible"), 'modal visible')
2011-09-11 07:14:57 +02:00
ok($('#modal-test').length, 'modal insterted into dom')
div.find('.close').click()
})
2011-09-12 07:58:51 +02:00
.bind("hidden", function() {
ok(!$('#modal-test').is(":visible"), 'modal hidden')
2011-09-11 07:14:57 +02:00
div.remove()
start()
2011-09-11 07:14:57 +02:00
})
2011-09-12 07:58:51 +02:00
.modal("toggle")
2011-09-10 21:49:21 +02:00
})
})