describe('a pattern with ^ and $', function () {
    it('has the correct keys', function () {
      compileRoute('/user$/^:userID', keys);
      expect(keys).toEqual([ 'userID' ]);
    });