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

26 lines
791 B
JavaScript
Raw Normal View History

2012-07-23 03:28:39 +02:00
$(function () {
2013-09-18 18:50:02 +02:00
module('affix')
2012-07-23 03:28:39 +02:00
2013-09-18 18:50:02 +02:00
test('should provide no conflict', function () {
var affix = $.fn.affix.noConflict()
ok(!$.fn.affix, 'affix was set back to undefined (org value)')
$.fn.affix = affix
})
2013-09-18 18:50:02 +02:00
test('should be defined on jquery object', function () {
2012-07-23 03:28:39 +02:00
ok($(document.body).affix, 'affix method is defined')
})
2013-09-18 18:50:02 +02:00
test('should return element', function () {
2012-07-23 03:28:39 +02:00
ok($(document.body).affix()[0] == document.body, 'document.body returned')
})
2013-09-18 18:50:02 +02:00
test('should exit early if element is not visible', function () {
2012-07-23 03:28:39 +02:00
var $affix = $('<div style="display: none"></div>').affix()
$affix.data('bs.affix').checkPosition()
2012-07-23 03:28:39 +02:00
ok(!$affix.hasClass('affix'), 'affix class was not added')
})
})