aboutsummaryrefslogtreecommitdiff
path: root/js/tests/unit/bootstrap-carousel.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/tests/unit/bootstrap-carousel.js')
-rw-r--r--js/tests/unit/bootstrap-carousel.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/js/tests/unit/bootstrap-carousel.js b/js/tests/unit/bootstrap-carousel.js
index 8bd1b62ba..13b8f721f 100644
--- a/js/tests/unit/bootstrap-carousel.js
+++ b/js/tests/unit/bootstrap-carousel.js
@@ -2,6 +2,12 @@ $(function () {
module("bootstrap-carousel")
+ test("should provide no conflict", function () {
+ var carousel = $.fn.carousel.noConflict()
+ ok(!$.fn.carousel, 'carousel was set back to undefined (org value)')
+ $.fn.carousel = carousel
+ })
+
test("should be defined on jquery object", function () {
ok($(document.body).carousel, 'carousel method is defined')
})