1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/bootstrap-source/bootstrap-3.0.3/js/tests/unit/alert.js Fri Dec 20 22:49:16 2013 +0100
1.3 @@ -0,0 +1,62 @@
1.4 +$(function () {
1.5 +
1.6 + module("alert")
1.7 +
1.8 + test("should provide no conflict", function () {
1.9 + var alert = $.fn.alert.noConflict()
1.10 + ok(!$.fn.alert, 'alert was set back to undefined (org value)')
1.11 + $.fn.alert = alert
1.12 + })
1.13 +
1.14 + test("should be defined on jquery object", function () {
1.15 + ok($(document.body).alert, 'alert method is defined')
1.16 + })
1.17 +
1.18 + test("should return element", function () {
1.19 + ok($(document.body).alert()[0] == document.body, 'document.body returned')
1.20 + })
1.21 +
1.22 + test("should fade element out on clicking .close", function () {
1.23 + var alertHTML = '<div class="alert-message warning fade in">'
1.24 + + '<a class="close" href="#" data-dismiss="alert">×</a>'
1.25 + + '<p><strong>Holy guacamole!</strong> Best check yo self, you\'re not looking too good.</p>'
1.26 + + '</div>'
1.27 + , alert = $(alertHTML).alert()
1.28 +
1.29 + alert.find('.close').click()
1.30 +
1.31 + ok(!alert.hasClass('in'), 'remove .in class on .close click')
1.32 + })
1.33 +
1.34 + test("should remove element when clicking .close", function () {
1.35 + $.support.transition = false
1.36 +
1.37 + var alertHTML = '<div class="alert-message warning fade in">'
1.38 + + '<a class="close" href="#" data-dismiss="alert">×</a>'
1.39 + + '<p><strong>Holy guacamole!</strong> Best check yo self, you\'re not looking too good.</p>'
1.40 + + '</div>'
1.41 + , alert = $(alertHTML).appendTo('#qunit-fixture').alert()
1.42 +
1.43 + ok($('#qunit-fixture').find('.alert-message').length, 'element added to dom')
1.44 +
1.45 + alert.find('.close').click()
1.46 +
1.47 + ok(!$('#qunit-fixture').find('.alert-message').length, 'element removed from dom')
1.48 + })
1.49 +
1.50 + test("should not fire closed when close is prevented", function () {
1.51 + $.support.transition = false
1.52 + stop();
1.53 + $('<div class="alert"/>')
1.54 + .on('close.bs.alert', function (e) {
1.55 + e.preventDefault();
1.56 + ok(true);
1.57 + start();
1.58 + })
1.59 + .on('closed.bs.alert', function () {
1.60 + ok(false);
1.61 + })
1.62 + .alert('close')
1.63 + })
1.64 +
1.65 +})