gitlab-org--gitlab-foss/spec/models/issue_spec.rb

47 lines
1.2 KiB
Ruby
Raw Normal View History

2012-10-09 08:14:17 +00:00
# == Schema Information
#
# Table name: issues
#
2012-11-19 18:24:05 +00:00
# id :integer not null, primary key
2012-10-09 08:14:17 +00:00
# title :string(255)
# assignee_id :integer
# author_id :integer
# project_id :integer
2012-11-19 18:24:05 +00:00
# created_at :datetime not null
# updated_at :datetime not null
2013-02-18 09:10:58 +00:00
# state :string default(FALSE), not null
2012-11-19 18:24:05 +00:00
# position :integer default(0)
2012-10-09 08:14:17 +00:00
# branch_name :string(255)
# description :text
# milestone_id :integer
#
2011-10-08 21:36:38 +00:00
require 'spec_helper'
describe Issue do
describe "Associations" do
2012-04-08 22:01:42 +00:00
it { should belong_to(:milestone) }
2011-10-08 21:36:38 +00:00
end
describe "Mass assignment" do
it { should_not allow_mass_assignment_of(:author_id) }
it { should_not allow_mass_assignment_of(:project_id) }
end
describe 'modules' do
it { should include_module(Issuable) }
end
subject { create(:issue) }
describe '#is_being_reassigned?' do
it 'returns true if the issue assignee has changed' do
subject.assignee = create(:user)
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
2011-10-08 21:36:38 +00:00
end