diff -r 72180e18b021 -r eabfc9a2eb35 unittests/tests/serializer.js --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/unittests/tests/serializer.js Mon Oct 10 16:14:58 2011 +0200 @@ -0,0 +1,10 @@ +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" ); + }); + +}; \ No newline at end of file