2012-10-09 10:14:17 +02:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: issues
|
|
|
|
#
|
2012-11-19 19:24:05 +01:00
|
|
|
# id :integer not null, primary key
|
2012-10-09 10:14:17 +02:00
|
|
|
# title :string(255)
|
|
|
|
# assignee_id :integer
|
|
|
|
# author_id :integer
|
|
|
|
# project_id :integer
|
2012-11-19 19:24:05 +01:00
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
2013-02-18 10:10:58 +01:00
|
|
|
# state :string default(FALSE), not null
|
2012-11-19 19:24:05 +01:00
|
|
|
# position :integer default(0)
|
2012-10-09 10:14:17 +02:00
|
|
|
# branch_name :string(255)
|
|
|
|
# description :text
|
|
|
|
# milestone_id :integer
|
|
|
|
#
|
|
|
|
|
2011-10-08 23:36:38 +02:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe Issue do
|
|
|
|
describe "Associations" do
|
2012-04-09 00:01:42 +02:00
|
|
|
it { should belong_to(:milestone) }
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
|
2012-09-26 20:17:17 +02:00
|
|
|
describe "Mass assignment" do
|
|
|
|
it { should_not allow_mass_assignment_of(:author_id) }
|
|
|
|
it { should_not allow_mass_assignment_of(:project_id) }
|
|
|
|
end
|
|
|
|
|
2012-08-29 07:52:19 +02:00
|
|
|
describe 'modules' do
|
2013-01-03 08:37:13 +01:00
|
|
|
it { should include_module(Issuable) }
|
2012-08-29 07:52:19 +02:00
|
|
|
end
|
|
|
|
|
2012-11-06 04:31:55 +01:00
|
|
|
subject { create(:issue) }
|
2012-05-20 20:15:13 +02:00
|
|
|
|
|
|
|
describe '#is_being_reassigned?' do
|
|
|
|
it 'returns true if the issue assignee has changed' do
|
2012-11-06 04:31:55 +01:00
|
|
|
subject.assignee = create(:user)
|
2012-05-20 20:15:13 +02:00
|
|
|
subject.is_being_reassigned?.should be_true
|
|
|
|
end
|
|
|
|
it 'returns false if the issue assignee has not changed' do
|
|
|
|
subject.is_being_reassigned?.should be_false
|
|
|
|
end
|
|
|
|
end
|
2013-02-18 10:41:32 +01:00
|
|
|
|
|
|
|
describe '#is_being_reassigned?' do
|
|
|
|
it 'returnes issues assigned to user' do
|
|
|
|
user = create :user
|
|
|
|
|
|
|
|
2.times do
|
|
|
|
issue = create :issue, assignee: user
|
|
|
|
end
|
|
|
|
|
|
|
|
Issue.open_for(user).count.should eq 2
|
|
|
|
end
|
|
|
|
end
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|