summaryrefslogtreecommitdiff
path: root/tbc/static/js/tests/unit/bootstrap-transition.js
diff options
context:
space:
mode:
authormahesh2016-04-01 02:07:50 +0530
committermahesh2016-04-01 02:07:50 +0530
commit6121eb13b8f1167eca44db61951354237ed41f8d (patch)
tree90df4bdbcff3785fd57c051b400bf0f0adbdd6af /tbc/static/js/tests/unit/bootstrap-transition.js
parent33ed7c1e2d874fbbe4131a17cc65da00a4007f0a (diff)
parent8876df52d088a1de0ea769a46b82ad6fb0682a80 (diff)
downloadPython-TBC-Interface-6121eb13b8f1167eca44db61951354237ed41f8d.tar.gz
Python-TBC-Interface-6121eb13b8f1167eca44db61951354237ed41f8d.tar.bz2
Python-TBC-Interface-6121eb13b8f1167eca44db61951354237ed41f8d.zip
Merge https://github.com/maheshgudi/Python-TBC-Interface
Diffstat (limited to 'tbc/static/js/tests/unit/bootstrap-transition.js')
-rwxr-xr-xtbc/static/js/tests/unit/bootstrap-transition.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/tbc/static/js/tests/unit/bootstrap-transition.js b/tbc/static/js/tests/unit/bootstrap-transition.js
new file mode 100755
index 0000000..086773f
--- /dev/null
+++ b/tbc/static/js/tests/unit/bootstrap-transition.js
@@ -0,0 +1,13 @@
+$(function () {
+
+ module("bootstrap-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')
+ })
+
+}) \ No newline at end of file