debian-mirror-gitlab/spec/models/external_issue_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

57 lines
1.3 KiB
Ruby
Raw Normal View History

2019-07-07 11:18:12 +05:30
# frozen_string_literal: true
2015-09-11 14:41:01 +05:30
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe ExternalIssue do
2017-08-17 22:00:37 +05:30
let(:project) { double('project', id: 1, to_reference: 'namespace1/project1') }
2015-09-11 14:41:01 +05:30
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
2016-06-02 11:05:42 +05:30
describe '#reference_link_text' do
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
2019-03-02 22:35:43 +05:30
let(:issue) { described_class.new('1234', project) }
2020-03-13 15:44:24 +05:30
2016-06-02 11:05:42 +05:30
it 'returns the issue ID prefixed by #' do
expect(issue.reference_link_text).to eq '#1234'
end
end
end
2017-08-17 22:00:37 +05:30
describe '#project_id' do
it 'returns the ID of the project' do
expect(issue.project_id).to eq(project.id)
end
end
describe '#hash' do
it 'returns the hash of its [class, to_s] pair' do
issue_2 = described_class.new(issue.to_s, project)
expect(issue.hash).to eq(issue_2.hash)
end
end
2015-09-11 14:41:01 +05:30
end