describe('POST /posts/2', function () {
    it('has the correct params', function () {
      return callApp(app, { method: 'POST', url: '/posts/2' }).then(function (conn) {
        expect(JSON.parse(conn.responseText)).toEqual({ id: '2' });
      });