equal
deleted
inserted
replaced
|
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 }; |