BigW Consortium Gitlab

external_issue_spec.rb 1.13 KB
Newer Older
1 2
require 'spec_helper'

Douwe Maan committed
3
describe ExternalIssue, models: true do
4
  let(:project) { double('project', id: 1, to_reference: 'namespace1/project1') }
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
  let(:issue)   { described_class.new('EXT-1234', project) }

  describe 'modules' do
    subject { described_class }

    it { is_expected.to include_module(Referable) }
  end

  describe '#to_reference' do
    it 'returns a String reference to the object' do
      expect(issue.to_reference).to eq issue.id
    end
  end

  describe '#title' do
    it 'returns a title' do
      expect(issue.title).to eq "External Issue #{issue}"
    end
  end
24 25

  describe '#reference_link_text' do
26 27 28 29 30 31 32 33 34 35 36
    context 'if issue id has a prefix' do
      it 'returns the issue ID' do
        expect(issue.reference_link_text).to eq 'EXT-1234'
      end
    end

    context 'if issue id is a number' do
      let(:issue)   { described_class.new('1234', project) }
      it 'returns the issue ID prefixed by #' do
        expect(issue.reference_link_text).to eq '#1234'
      end
37 38
    end
  end
39 40 41 42 43 44

  describe '#project_id' do
    it 'returns the ID of the project' do
      expect(issue.project_id).to eq(project.id)
    end
  end
45
end