cubicweb/web/test/test_jscript.py
changeset 11057 0b59724cb3f2
parent 10935 049209b9e9d6
child 11850 87443f279b0f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cubicweb/web/test/test_jscript.py	Sat Jan 16 13:48:51 2016 +0100
@@ -0,0 +1,38 @@
+from cubicweb.devtools import qunit
+
+from os import path as osp
+
+
+class JScript(qunit.QUnitTestCase):
+
+    all_js_tests = (
+        ("/static/jstests/test_utils.js", (
+            "/data/cubicweb.js",
+            "/data/cubicweb.compat.js",
+            "/data/cubicweb.python.js",
+            "/static/jstests/utils.js",
+            ),
+         ),
+
+        ("/static/jstests/test_htmlhelpers.js", (
+            "/data/cubicweb.js",
+            "/data/cubicweb.compat.js",
+            "/data/cubicweb.python.js",
+            "/data/cubicweb.htmlhelpers.js",
+            ),
+         ),
+
+        ("/static/jstests/test_ajax.js", (
+            "/data/cubicweb.python.js",
+            "/data/cubicweb.js",
+            "/data/cubicweb.compat.js",
+            "/data/cubicweb.htmlhelpers.js",
+            "/data/cubicweb.ajax.js",
+            ),
+         ),
+    )
+
+
+if __name__ == '__main__':
+    from unittest import main
+    main()