2012-06-26 20:23:09 +02:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: milestones
|
|
|
|
#
|
|
|
|
# id :integer(4) not null, primary key
|
|
|
|
# title :string(255) not null
|
|
|
|
# project_id :integer(4) not null
|
|
|
|
# description :text
|
|
|
|
# due_date :date
|
|
|
|
# closed :boolean(1) default(FALSE), not null
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
#
|
|
|
|
|
2012-04-08 23:28:58 +02:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe Milestone do
|
2012-04-09 00:01:42 +02:00
|
|
|
describe "Associations" do
|
|
|
|
it { should belong_to(:project) }
|
|
|
|
it { should have_many(:issues) }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "Validation" do
|
|
|
|
it { should validate_presence_of(:title) }
|
|
|
|
it { should validate_presence_of(:project_id) }
|
|
|
|
end
|
|
|
|
|
|
|
|
let(:project) { Factory :project }
|
2012-08-11 00:07:50 +02:00
|
|
|
let(:milestone) { Factory :milestone, project: project }
|
|
|
|
let(:issue) { Factory :issue, project: project }
|
2012-04-09 00:01:42 +02:00
|
|
|
|
|
|
|
it { milestone.should be_valid }
|
|
|
|
|
2012-08-25 19:54:38 +02:00
|
|
|
describe "#percent_complete" do
|
|
|
|
it "should not count open issues" do
|
2012-04-09 00:01:42 +02:00
|
|
|
milestone.issues << issue
|
2012-08-25 19:54:38 +02:00
|
|
|
milestone.percent_complete.should == 0
|
2012-04-09 00:01:42 +02:00
|
|
|
end
|
|
|
|
|
2012-08-25 19:54:38 +02:00
|
|
|
it "should count closed issues" do
|
|
|
|
issue.update_attributes(closed: true)
|
|
|
|
milestone.issues << issue
|
|
|
|
milestone.percent_complete.should == 100
|
|
|
|
end
|
2012-04-09 00:01:42 +02:00
|
|
|
|
2012-08-25 19:54:38 +02:00
|
|
|
it "should recover from dividing by zero" do
|
|
|
|
milestone.issues.should_receive(:count).and_return(0)
|
2012-04-09 00:01:42 +02:00
|
|
|
milestone.percent_complete.should == 100
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-08-25 19:54:38 +02:00
|
|
|
describe "#expires_at" do
|
|
|
|
it "should be nil when due_date is unset" do
|
|
|
|
milestone.update_attributes(due_date: nil)
|
|
|
|
milestone.expires_at.should be_nil
|
2012-04-09 00:01:42 +02:00
|
|
|
end
|
|
|
|
|
2012-08-25 19:54:38 +02:00
|
|
|
it "should not be nil when due_date is set" do
|
|
|
|
milestone.update_attributes(due_date: Date.tomorrow)
|
|
|
|
milestone.expires_at.should be_present
|
|
|
|
end
|
2012-04-09 00:01:42 +02:00
|
|
|
end
|
2012-04-08 23:28:58 +02:00
|
|
|
end
|