$(function () { 'use strict'; module('modal plugin') test('should be defined on jquery object', function () { var div = $('
') ok(div.modal, 'modal method is defined') }) module('modal', { setup: function () { // Run all tests in noConflict mode -- it's the only way to ensure that the plugin works in noConflict mode $.fn.bootstrapModal = $.fn.modal.noConflict() }, teardown: function () { $.fn.modal = $.fn.bootstrapModal delete $.fn.bootstrapModal } }) test('should provide no conflict', function () { ok(!$.fn.modal, 'modal was set back to undefined (orig value)') }) test('should return element', function () { var div = $('') ok(div.bootstrapModal() == div, 'document.body returned') $('#modal-test').remove() }) test('should expose defaults var for settings', function () { ok($.fn.bootstrapModal.Constructor.DEFAULTS, 'default object exposed') }) test('should insert into dom when show method is called', function () { stop() $.support.transition = false $('') .on('shown.bs.modal', function () { ok($('#modal-test').length, 'modal inserted into dom') $(this).remove() start() }) .bootstrapModal('show') }) test('should fire show event', function () { stop() $.support.transition = false $('') .on('show.bs.modal', function () { ok(true, 'show was called') }) .on('shown.bs.modal', function () { $(this).remove() start() }) .bootstrapModal('show') }) test('should not fire shown when default prevented', function () { stop() $.support.transition = false $('') .on('show.bs.modal', function (e) { e.preventDefault() ok(true, 'show was called') start() }) .on('shown.bs.modal', function () { ok(false, 'shown was called') }) .bootstrapModal('show') }) test('should hide modal when hide is called', function () { stop() $.support.transition = false $('') .on('shown.bs.modal', function () { ok($('#modal-test').is(':visible'), 'modal visible') ok($('#modal-test').length, 'modal inserted into dom') $(this).bootstrapModal('hide') }) .on('hidden.bs.modal', function () { ok(!$('#modal-test').is(':visible'), 'modal hidden') $('#modal-test').remove() start() }) .bootstrapModal('show') }) test('should toggle when toggle is called', function () { stop() $.support.transition = false var div = $('') div .on('shown.bs.modal', function () { ok($('#modal-test').is(':visible'), 'modal visible') ok($('#modal-test').length, 'modal inserted into dom') div.bootstrapModal('toggle') }) .on('hidden.bs.modal', function () { ok(!$('#modal-test').is(':visible'), 'modal hidden') div.remove() start() }) .bootstrapModal('toggle') }) test('should remove from dom when click [data-dismiss="modal"]', function () { stop() $.support.transition = false var div = $('