devtools/test/data/static/js_examples/test_simple_success.js
author Rémi Cardona <remi.cardona@logilab.fr>, Julien Cristau <julien.cristau@logilab.fr>
Thu, 26 Nov 2015 11:30:54 +0100
changeset 10935 049209b9e9d6
parent 10429 devtools/test/data/js_examples/test_simple_success.js@98ea2b865210
permissions -rw-r--r--
[qunit] stop dealing with filesystem paths qunit tests need a few things served by cubicweb: - qunit itself, which is now handled by CWDevtoolsStaticController (serving files in cubicweb/devtools/data) - standard cubicweb or cubes data files, handled by the DataController - the tests themselves and their dependencies. These can live in <apphome>/data or <apphome>/static and be served by one of the STATIC_CONTROLLERS This avoids having to guess in CWSoftwareRootStaticController where to serve things from (some files may be installed, others are in the source tree), and should hopefully make it possible to have these tests pass when using tox, and to write qunit tests for cubes, outside of cubicweb itself. This requires modifying the tests to only declare URL paths instead of filesystem paths, and moving support files below test/data/static.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5742
74c19dac29cf Add a QUnitTestCase class to run qunit test case.
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
diff changeset
     1
$(document).ready(function() {
74c19dac29cf Add a QUnitTestCase class to run qunit test case.
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
diff changeset
     2
10428
c961a301a90b [devtools] qunit: stop using global variables
Rémi Cardona <remi.cardona@logilab.fr>
parents: 10426
diff changeset
     3
  QUnit.module("air");
5742
74c19dac29cf Add a QUnitTestCase class to run qunit test case.
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
diff changeset
     4
10429
98ea2b865210 [devtools] qunit: use new assert APIs
Rémi Cardona <remi.cardona@logilab.fr>
parents: 10428
diff changeset
     5
  QUnit.test("test 1", function (assert) {
98ea2b865210 [devtools] qunit: use new assert APIs
Rémi Cardona <remi.cardona@logilab.fr>
parents: 10428
diff changeset
     6
      assert.equal(2, 2);
5742
74c19dac29cf Add a QUnitTestCase class to run qunit test case.
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
diff changeset
     7
  });
74c19dac29cf Add a QUnitTestCase class to run qunit test case.
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
diff changeset
     8
10429
98ea2b865210 [devtools] qunit: use new assert APIs
Rémi Cardona <remi.cardona@logilab.fr>
parents: 10428
diff changeset
     9
  QUnit.test("test 2", function (assert) {
98ea2b865210 [devtools] qunit: use new assert APIs
Rémi Cardona <remi.cardona@logilab.fr>
parents: 10428
diff changeset
    10
      assert.equal('45', '45');
5742
74c19dac29cf Add a QUnitTestCase class to run qunit test case.
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
diff changeset
    11
  });
74c19dac29cf Add a QUnitTestCase class to run qunit test case.
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
diff changeset
    12
10428
c961a301a90b [devtools] qunit: stop using global variables
Rémi Cardona <remi.cardona@logilab.fr>
parents: 10426
diff changeset
    13
  QUnit.module("able");
10429
98ea2b865210 [devtools] qunit: use new assert APIs
Rémi Cardona <remi.cardona@logilab.fr>
parents: 10428
diff changeset
    14
  QUnit.test("test 3", function (assert) {
98ea2b865210 [devtools] qunit: use new assert APIs
Rémi Cardona <remi.cardona@logilab.fr>
parents: 10428
diff changeset
    15
      assert.deepEqual(1, 1);
5742
74c19dac29cf Add a QUnitTestCase class to run qunit test case.
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
diff changeset
    16
  });
74c19dac29cf Add a QUnitTestCase class to run qunit test case.
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
diff changeset
    17
});