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