devtools/test/data/js_examples/test_simple_failure.js
author Aurelien Campeas <aurelien.campeas@logilab.fr>
Tue, 13 May 2014 13:12:16 +0200
branchstable
changeset 9731 027bfc467a46
parent 5742 74c19dac29cf
child 10426 ce213d6858f1
permissions -rw-r--r--
[cache] fix a cache issue with an entity created without relation cache prefill Prefilling the relation cache has its benefits sometimes, but for massive imports it may be a memory hog. The caches should be kept coherent even if there was no prefill. Closes #3828155.

$(document).ready(function() {

  module("air");

  test("test 1", function() {
      equals(2, 4);
  });

  test("test 2", function() {
      equals('', '45');
      equals('1024', '32');
  });

  module("able");
  test("test 3", function() {
      same(1, 1);
  });
});