spec/lib/release_tools/project/gitlab_ce_spec.rb [18:40]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  end

  describe '.group' do
    it { expect(described_class.group).to eq 'gitlab-org' }
  end

  describe '.dev_group' do
    it { expect(described_class.dev_group).to eq 'gitlab' }
  end

  describe '.default_branch' do
    context 'when swith_to_main_branch is enabled' do
      before do
        enable_feature(:switch_to_main_branch)
      end

      it { expect(described_class.default_branch).to eq 'main' }
    end

    it { expect(described_class.default_branch).to eq 'master' }
  end

  describe '.metadata_project_name' do
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



spec/lib/release_tools/project/gitlab_ee_spec.rb [20:42]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  end

  describe '.group' do
    it { expect(described_class.group).to eq 'gitlab-org' }
  end

  describe '.dev_group' do
    it { expect(described_class.dev_group).to eq 'gitlab' }
  end

  describe '.default_branch' do
    context 'when swith_to_main_branch is enabled' do
      before do
        enable_feature(:switch_to_main_branch)
      end

      it { expect(described_class.default_branch).to eq 'main' }
    end

    it { expect(described_class.default_branch).to eq 'master' }
  end

  describe '.metadata_project_name' do
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



