unittests/tests/serializer.js
branchpopcorn-port
changeset 57 eabfc9a2eb35
child 65 6a8cae20f190
--- /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