Welcome to mirror list, hosted at ThFree Co, Russian Federation.

base_ci_shared_examples.rb « integrations « models « shared_examples « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 08fab45e41b1f922ef667015a2c8a8e2b28f462d (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

RSpec.shared_examples Integrations::BaseCi do
  describe 'default values' do
    it { expect(subject.category).to eq(:ci) }
  end
end