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