bootstrap/js/tests/unit/affix.js

26 lines
791 B
JavaScript
Raw Normal View History

2012-07-23 09:28:39 +08:00
$(function () {
2013-09-19 00:50:02 +08:00
module('affix')
2012-07-23 09:28:39 +08:00
2013-09-19 00:50:02 +08: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-19 00:50:02 +08:00
test('should be defined on jquery object', function () {
2012-07-23 09:28:39 +08:00
ok($(document.body).affix, 'affix method is defined')
})
2013-09-19 00:50:02 +08:00
test('should return element', function () {
2012-07-23 09:28:39 +08:00
ok($(document.body).affix()[0] == document.body, 'document.body returned')
})
2013-09-19 00:50:02 +08:00
test('should exit early if element is not visible', function () {
2012-07-23 09:28:39 +08:00
var $affix = $('<div style="display: none"></div>').affix()
$affix.data('bs.affix').checkPosition()
2012-07-23 09:28:39 +08:00
ok(!$affix.hasClass('affix'), 'affix class was not added')
})
})