unittests/tests/serializer.js
author hamidouk
Tue, 11 Oct 2011 17:14:47 +0200
branchpopcorn-port
changeset 62 aa30f4339117
parent 57 eabfc9a2eb35
child 65 6a8cae20f190
permissions -rw-r--r--
removed a comma which made ie trip-out

function test_serializer() {
  module("Serializer basic tests");
  
  test("a basic test example", function() {
      ok( true, "this test is fine" );
      var value = "hello";
      equal( value, "hello", "We expect value to be hello" );
  });

};