[pkg] do not include toplevel directories in rpm (closes #10362119)
Our spec file conflicts with the filesystem package in centos7: we set
permissions to 0755 for /usr/bin and /usr/lib whereas filesystem sets
them to 0555.
So to be compatible with both centos7 and others we simply ignore these
directories.
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()