diff options
| author | fat <[email protected]> | 2013-05-16 11:06:30 -0700 |
|---|---|---|
| committer | fat <[email protected]> | 2013-05-16 11:06:30 -0700 |
| commit | 14651035deda4d02a1ca02c6088c34f770f897f6 (patch) | |
| tree | 34002a1d364bb2618ab2526d5f0f9bd5c823bf47 /js/tests/unit/transition.js | |
| parent | 509f2244da757a60d3548a7d34d63080dc01ee19 (diff) | |
| download | bootstrap-14651035deda4d02a1ca02c6088c34f770f897f6.tar.xz bootstrap-14651035deda4d02a1ca02c6088c34f770f897f6.zip | |
a bunch javascript junk
Diffstat (limited to 'js/tests/unit/transition.js')
| -rw-r--r-- | js/tests/unit/transition.js | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/js/tests/unit/transition.js b/js/tests/unit/transition.js new file mode 100644 index 000000000..39c415bc2 --- /dev/null +++ b/js/tests/unit/transition.js @@ -0,0 +1,13 @@ +$(function () { + + module("transition") + + test("should be defined on jquery support object", function () { + ok($.support.transition !== undefined, 'transition object is defined') + }) + + test("should provide an end object", function () { + ok($.support.transition ? $.support.transition.end : true, 'end string is defined') + }) + +}) |
