web/test/test_jscript.py
changeset 11057 0b59724cb3f2
parent 11052 058bb3dc685f
child 11058 23eb30449fe5
--- a/web/test/test_jscript.py	Mon Jan 04 18:40:30 2016 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,38 +0,0 @@
-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()