unittests/tests/serializer.js
author hamidouk
Mon, 10 Oct 2011 16:14:58 +0200
branchpopcorn-port
changeset 57 eabfc9a2eb35
child 65 6a8cae20f190
permissions -rw-r--r--
Added unit testing with QUnit.

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" );
  });

};