2011-10-08 23:36:38 +02:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe Issue do
|
|
|
|
describe "Associations" do
|
|
|
|
it { should belong_to(:project) }
|
|
|
|
it { should belong_to(:author) }
|
|
|
|
it { should belong_to(:assignee) }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "Validation" do
|
|
|
|
it { should validate_presence_of(:title) }
|
|
|
|
it { should validate_presence_of(:author_id) }
|
|
|
|
it { should validate_presence_of(:project_id) }
|
|
|
|
it { should validate_presence_of(:assignee_id) }
|
|
|
|
end
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
describe "Scope" do
|
2011-10-08 23:36:38 +02:00
|
|
|
it { Issue.should respond_to :closed }
|
|
|
|
it { Issue.should respond_to :opened }
|
|
|
|
end
|
|
|
|
|
|
|
|
it { Factory.create(:issue,
|
|
|
|
:author => Factory(:user),
|
|
|
|
:assignee => Factory(:user),
|
|
|
|
:project => Factory.create(:project)).should be_valid }
|
|
|
|
|
|
|
|
end
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: issues
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# title :string(255)
|
|
|
|
# assignee_id :integer
|
|
|
|
# author_id :integer
|
|
|
|
# project_id :integer
|
|
|
|
# created_at :datetime
|
|
|
|
# updated_at :datetime
|
|
|
|
# closed :boolean default(FALSE), not null
|
2011-10-17 17:31:21 +02:00
|
|
|
# position :integer default(0)
|
2011-11-10 23:08:20 +01:00
|
|
|
# critical :boolean default(FALSE), not null
|
2011-12-18 15:09:16 +01:00
|
|
|
# branch_name :string(255)
|
2011-10-08 23:36:38 +02:00
|
|
|
#
|
|
|
|
|