devtools/devctl.py
changeset 10413 22a89d0f4143
parent 10308 3f94034cc972
child 10474 1dcc52f5e340
--- a/devtools/devctl.py	Wed May 13 15:58:21 2015 +0200
+++ b/devtools/devctl.py	Wed May 13 17:49:40 2015 +0200
@@ -837,21 +837,11 @@
             p.wait()
 
 
-class GenerateQUnitHTML(Command):
-    """Generate a QUnit html file to see test in your browser"""
-    name = "qunit-html"
-    arguments = '<test file> [<dependancy js file>...]'
-
-    def run(self, args):
-        from cubicweb.devtools.qunit import make_qunit_html
-        print make_qunit_html(args[0], args[1:])
-
 for cmdcls in (UpdateCubicWebCatalogCommand,
                UpdateCubeCatalogCommand,
                #LiveServerCommand,
                NewCubeCommand,
                ExamineLogCommand,
                GenerateSchema,
-               GenerateQUnitHTML,
                ):
     CWCTL.register(cmdcls)