spec/lib/release_tools/public_release/gitlab_operator_release_spec.rb [83:103]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        release.execute
      end
    end
  end

  describe '#compile_changelog' do
    it 'compiles the changelog' do
      compiler = instance_spy(ReleaseTools::ChangelogCompiler)

      expect(ReleaseTools::ChangelogCompiler)
        .to receive(:new)
        .with(release.project_path, { client: release.client })
        .and_return(compiler)

      expect(compiler)
        .to receive(:compile)
        .with(version, { branch: release.target_branch })

      release.compile_changelog
    end
  end
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



spec/lib/release_tools/public_release/helm_gitlab_release_spec.rb [51:71]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        release.execute
      end
    end
  end

  describe '#compile_changelog' do
    it 'compiles the changelog' do
      compiler = instance_spy(ReleaseTools::ChangelogCompiler)

      expect(ReleaseTools::ChangelogCompiler)
        .to receive(:new)
        .with(release.project_path, { client: release.client })
        .and_return(compiler)

      expect(compiler)
        .to receive(:compile)
        .with(version, { branch: release.target_branch })

      release.compile_changelog
    end
  end
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



