devtools/test/data/js_examples/test_simple_success.js
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Fri, 07 Jan 2011 13:14:40 +0100
branchstable
changeset 6791 fe58b234f9c2
parent 5742 74c19dac29cf
child 10426 ce213d6858f1
permissions -rw-r--r--
[web session] refactor to finally closes #343036: allow _postlogin behaviour overloading

$(document).ready(function() {

  module("air");

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

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

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