unittests/tests/serializer.js
branchpopcorn-port
changeset 57 eabfc9a2eb35
child 65 6a8cae20f190
equal deleted inserted replaced
56:72180e18b021 57:eabfc9a2eb35
       
     1 function test_serializer() {
       
     2   module("Serializer basic tests");
       
     3   
       
     4   test("a basic test example", function() {
       
     5       ok( true, "this test is fine" );
       
     6       var value = "hello";
       
     7       equal( value, "hello", "We expect value to be hello" );
       
     8   });
       
     9 
       
    10 };