1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/bootstrap-source/bootstrap-3.0.3/js/tests/unit/affix.js Fri Dec 20 22:49:16 2013 +0100
1.3 @@ -0,0 +1,25 @@
1.4 +$(function () {
1.5 +
1.6 + module("affix")
1.7 +
1.8 + test("should provide no conflict", function () {
1.9 + var affix = $.fn.affix.noConflict()
1.10 + ok(!$.fn.affix, 'affix was set back to undefined (org value)')
1.11 + $.fn.affix = affix
1.12 + })
1.13 +
1.14 + test("should be defined on jquery object", function () {
1.15 + ok($(document.body).affix, 'affix method is defined')
1.16 + })
1.17 +
1.18 + test("should return element", function () {
1.19 + ok($(document.body).affix()[0] == document.body, 'document.body returned')
1.20 + })
1.21 +
1.22 + test("should exit early if element is not visible", function () {
1.23 + var $affix = $('<div style="display: none"></div>').affix()
1.24 + $affix.data('bs.affix').checkPosition()
1.25 + ok(!$affix.hasClass('affix'), 'affix class was not added')
1.26 + })
1.27 +
1.28 +})