comparison static/bootstrap/js/tests/unit/bootstrap-scrollspy.js @ 88:a5a3d454eac9

Updated Bootstrap.
author Ludovic Chabant <ludovic@chabant.com>
date Fri, 05 Apr 2013 08:08:12 -0700
parents
children
comparison
equal deleted inserted replaced
87:c0cf67362fb1 88:a5a3d454eac9
1 $(function () {
2
3 module("bootstrap-scrollspy")
4
5 test("should provide no conflict", function () {
6 var scrollspy = $.fn.scrollspy.noConflict()
7 ok(!$.fn.scrollspy, 'scrollspy was set back to undefined (org value)')
8 $.fn.scrollspy = scrollspy
9 })
10
11 test("should be defined on jquery object", function () {
12 ok($(document.body).scrollspy, 'scrollspy method is defined')
13 })
14
15 test("should return element", function () {
16 ok($(document.body).scrollspy()[0] == document.body, 'document.body returned')
17 })
18
19 test("should switch active class on scroll", function () {
20 var sectionHTML = '<div id="masthead"></div>'
21 , $section = $(sectionHTML).append('#qunit-fixture')
22 , topbarHTML ='<div class="topbar">'
23 + '<div class="topbar-inner">'
24 + '<div class="container">'
25 + '<h3><a href="#">Bootstrap</a></h3>'
26 + '<ul class="nav">'
27 + '<li><a href="#masthead">Overview</a></li>'
28 + '</ul>'
29 + '</div>'
30 + '</div>'
31 + '</div>'
32 , $topbar = $(topbarHTML).scrollspy()
33
34 ok($topbar.find('.active', true))
35 })
36
37 })