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

factory_spec.rb « status « ci « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8ebdbddb001f26831d58a41c751fbb28d8b4642d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
require 'spec_helper'

describe Gitlab::Ci::Status::Factory do
  let(:object) { double(status: :created) }

  subject do
    described_class.new(object)
  end

  let(:status) do
    subject.fabricate!
  end

  context 'when object has a core status' do
    HasStatus::AVAILABLE_STATUSES.each do |core_status|
      context "when core status is #{core_status}" do
        let(:object) { double(status: core_status) }

        it "fabricates a core status #{core_status}" do
          expect(status).to be_a(
            Gitlab::Ci::Status.const_get(core_status.capitalize))
        end
      end
    end
  end
end