describe('when the request does not match a mapping', function () {
    it('passes the request through to the default app', function () {
      return callApp(app, '/three').then(function (conn) {
        expect(conn.status).toEqual(404);
      });