devtools/test/data/js_examples/test_simple_failure.js
author Aurelien Campeas <aurelien.campeas@logilab.fr>
Fri, 02 Jul 2010 15:26:59 +0200
changeset 5869 8a129b3a5aff
parent 5742 74c19dac29cf
child 10426 ce213d6858f1
permissions -rw-r--r--
reledit refactoring * js handling rewritten to exploit all form capabilities (such as file upload ...) * attribute-like composite relations (one ttype, cardinality in '?1' from composite side) are more cutely handled, with a 'add'/'delete' additional actions/icons * a reledit_ctrl rtag to finely control: reloading, edition and default values * a proper chapter in the documentation (book) * many bugfixes

$(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);
  });
});