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

scheduled_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: b8ca3caa1f7e4514d81f0548c43859b2b5d39e92 (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
27
require 'spec_helper'

describe Gitlab::Ci::Status::Scheduled do
  subject do
    described_class.new(double('subject'), double('user'))
  end

  describe '#text' do
    it { expect(subject.text).to eq 'delayed' }
  end

  describe '#label' do
    it { expect(subject.label).to eq 'delayed' }
  end

  describe '#icon' do
    it { expect(subject.icon).to eq 'status_scheduled' }
  end

  describe '#favicon' do
    it { expect(subject.favicon).to eq 'favicon_status_scheduled' }
  end

  describe '#group' do
    it { expect(subject.group).to eq 'scheduled' }
  end
end