info@54
|
1 |
$(function () {
|
info@54
|
2 |
|
info@54
|
3 |
module("alert")
|
info@54
|
4 |
|
info@54
|
5 |
test("should provide no conflict", function () {
|
info@54
|
6 |
var alert = $.fn.alert.noConflict()
|
info@54
|
7 |
ok(!$.fn.alert, 'alert was set back to undefined (org value)')
|
info@54
|
8 |
$.fn.alert = alert
|
info@54
|
9 |
})
|
info@54
|
10 |
|
info@54
|
11 |
test("should be defined on jquery object", function () {
|
info@54
|
12 |
ok($(document.body).alert, 'alert method is defined')
|
info@54
|
13 |
})
|
info@54
|
14 |
|
info@54
|
15 |
test("should return element", function () {
|
info@54
|
16 |
ok($(document.body).alert()[0] == document.body, 'document.body returned')
|
info@54
|
17 |
})
|
info@54
|
18 |
|
info@54
|
19 |
test("should fade element out on clicking .close", function () {
|
info@54
|
20 |
var alertHTML = '<div class="alert-message warning fade in">'
|
info@54
|
21 |
+ '<a class="close" href="#" data-dismiss="alert">×</a>'
|
info@54
|
22 |
+ '<p><strong>Holy guacamole!</strong> Best check yo self, you\'re not looking too good.</p>'
|
info@54
|
23 |
+ '</div>'
|
info@54
|
24 |
, alert = $(alertHTML).alert()
|
info@54
|
25 |
|
info@54
|
26 |
alert.find('.close').click()
|
info@54
|
27 |
|
info@54
|
28 |
ok(!alert.hasClass('in'), 'remove .in class on .close click')
|
info@54
|
29 |
})
|
info@54
|
30 |
|
info@54
|
31 |
test("should remove element when clicking .close", function () {
|
info@54
|
32 |
$.support.transition = false
|
info@54
|
33 |
|
info@54
|
34 |
var alertHTML = '<div class="alert-message warning fade in">'
|
info@54
|
35 |
+ '<a class="close" href="#" data-dismiss="alert">×</a>'
|
info@54
|
36 |
+ '<p><strong>Holy guacamole!</strong> Best check yo self, you\'re not looking too good.</p>'
|
info@54
|
37 |
+ '</div>'
|
info@54
|
38 |
, alert = $(alertHTML).appendTo('#qunit-fixture').alert()
|
info@54
|
39 |
|
info@54
|
40 |
ok($('#qunit-fixture').find('.alert-message').length, 'element added to dom')
|
info@54
|
41 |
|
info@54
|
42 |
alert.find('.close').click()
|
info@54
|
43 |
|
info@54
|
44 |
ok(!$('#qunit-fixture').find('.alert-message').length, 'element removed from dom')
|
info@54
|
45 |
})
|
info@54
|
46 |
|
info@54
|
47 |
test("should not fire closed when close is prevented", function () {
|
info@54
|
48 |
$.support.transition = false
|
info@54
|
49 |
stop();
|
info@54
|
50 |
$('<div class="alert"/>')
|
info@54
|
51 |
.on('close.bs.alert', function (e) {
|
info@54
|
52 |
e.preventDefault();
|
info@54
|
53 |
ok(true);
|
info@54
|
54 |
start();
|
info@54
|
55 |
})
|
info@54
|
56 |
.on('closed.bs.alert', function () {
|
info@54
|
57 |
ok(false);
|
info@54
|
58 |
})
|
info@54
|
59 |
.alert('close')
|
info@54
|
60 |
})
|
info@54
|
61 |
|
info@54
|
62 |
})
|