gistfile1.js ���'V h �'V //Test for Backbone.js sample app //http://lab.dwango.jp/articles/jquery-mobile-app-development/2-add-mvc-with-backbone.html module("Friend"); test("initialize",function(){ expect(1); var friend = new Friend(); ok(friend,"initialize ok"); }); test("has data attribute",function(){ expect(1); var friend = new Friend(); ok(friend.get("date"),"data ok"); }); test("has name and