1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/bootstrap-source/bootstrap-3.0.3/js/tests/unit/transition.js Fri Dec 20 22:49:16 2013 +0100
1.3 @@ -0,0 +1,13 @@
1.4 +$(function () {
1.5 +
1.6 + module("transition")
1.7 +
1.8 + test("should be defined on jquery support object", function () {
1.9 + ok($.support.transition !== undefined, 'transition object is defined')
1.10 + })
1.11 +
1.12 + test("should provide an end object", function () {
1.13 + ok($.support.transition ? $.support.transition.end : true, 'end string is defined')
1.14 + })
1.15 +
1.16 +})