2012-10-09 04:14:17 -04:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: issues
|
|
|
|
#
|
2012-11-19 13:24:05 -05:00
|
|
|
# id :integer not null, primary key
|
2012-10-09 04:14:17 -04:00
|
|
|
# title :string(255)
|
|
|
|
# assignee_id :integer
|
|
|
|
# author_id :integer
|
|
|
|
# project_id :integer
|
2014-04-09 08:05:03 -04:00
|
|
|
# created_at :datetime
|
|
|
|
# updated_at :datetime
|
2012-11-19 13:24:05 -05:00
|
|
|
# position :integer default(0)
|
2012-10-09 04:14:17 -04:00
|
|
|
# branch_name :string(255)
|
|
|
|
# description :text
|
|
|
|
# milestone_id :integer
|
2013-03-15 09:16:02 -04:00
|
|
|
# state :string(255)
|
2013-08-21 05:34:02 -04:00
|
|
|
# iid :integer
|
2012-10-09 04:14:17 -04:00
|
|
|
#
|
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe Issue do
|
|
|
|
describe "Associations" do
|
2015-02-12 13:17:35 -05:00
|
|
|
it { is_expected.to belong_to(:milestone) }
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
|
2012-08-29 01:52:19 -04:00
|
|
|
describe 'modules' do
|
2015-05-02 23:11:21 -04:00
|
|
|
subject { described_class }
|
|
|
|
|
|
|
|
it { is_expected.to include_module(InternalId) }
|
2015-02-12 13:17:35 -05:00
|
|
|
it { is_expected.to include_module(Issuable) }
|
2015-05-02 23:11:21 -04:00
|
|
|
it { is_expected.to include_module(Referable) }
|
|
|
|
it { is_expected.to include_module(Sortable) }
|
|
|
|
it { is_expected.to include_module(Taskable) }
|
2012-08-29 01:52:19 -04:00
|
|
|
end
|
|
|
|
|
2012-11-05 22:31:55 -05:00
|
|
|
subject { create(:issue) }
|
2012-05-20 14:15:13 -04:00
|
|
|
|
2015-05-02 23:11:21 -04:00
|
|
|
describe '#to_reference' do
|
|
|
|
it 'returns a String reference to the object' do
|
|
|
|
expect(subject.to_reference).to eq "##{subject.iid}"
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'supports a cross-project reference' do
|
|
|
|
cross = double('project')
|
|
|
|
expect(subject.to_reference(cross)).
|
|
|
|
to eq "#{subject.project.to_reference}##{subject.iid}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-05-20 14:15:13 -04:00
|
|
|
describe '#is_being_reassigned?' do
|
|
|
|
it 'returns true if the issue assignee has changed' do
|
2012-11-05 22:31:55 -05:00
|
|
|
subject.assignee = create(:user)
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(subject.is_being_reassigned?).to be_truthy
|
2012-05-20 14:15:13 -04:00
|
|
|
end
|
|
|
|
it 'returns false if the issue assignee has not changed' do
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(subject.is_being_reassigned?).to be_falsey
|
2012-05-20 14:15:13 -04:00
|
|
|
end
|
|
|
|
end
|
2013-02-18 04:41:32 -05:00
|
|
|
|
|
|
|
describe '#is_being_reassigned?' do
|
2013-07-29 06:46:00 -04:00
|
|
|
it 'returns issues assigned to user' do
|
2015-05-02 23:14:31 -04:00
|
|
|
user = create(:user)
|
|
|
|
create_list(:issue, 2, assignee: user)
|
2013-02-18 04:41:32 -05:00
|
|
|
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(Issue.open_for(user).count).to eq 2
|
2013-02-18 04:41:32 -05:00
|
|
|
end
|
|
|
|
end
|
2013-05-30 19:16:49 -04:00
|
|
|
|
|
|
|
it_behaves_like 'an editable mentionable' do
|
2015-04-16 16:25:25 -04:00
|
|
|
subject { create(:issue, project: project) }
|
|
|
|
|
2013-05-30 19:16:49 -04:00
|
|
|
let(:backref_text) { "issue ##{subject.iid}" }
|
|
|
|
let(:set_mentionable_text) { ->(txt){ subject.description = txt } }
|
|
|
|
end
|
2014-10-05 22:17:28 -04:00
|
|
|
|
|
|
|
it_behaves_like 'a Taskable' do
|
|
|
|
let(:subject) { create :issue }
|
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|