cubicweb/web/test/test_jscript.py
author Julien Cristau <julien.cristau@logilab.fr>
Wed, 09 Mar 2016 14:11:47 +0100
changeset 11194 b6b00bb1e528
parent 11057 0b59724cb3f2
child 11850 87443f279b0f
permissions -rw-r--r--
[web/test] fix typo in doc string

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()