first pack of tests for milestones

This commit is contained in:
Dmitriy Zaporozhets 2012-04-09 01:01:42 +03:00
parent 23d950855d
commit d98b183361
8 changed files with 145 additions and 48 deletions

View file

@ -5,6 +5,7 @@ describe Issue do
it { should belong_to(:project) }
it { should belong_to(:author) }
it { should belong_to(:assignee) }
it { should belong_to(:milestone) }
end
describe "Validation" do
@ -22,7 +23,7 @@ describe Issue do
it { Factory.create(:issue,
:author => Factory(:user),
:assignee => Factory(:user),
:project => Factory.create(:project)).should be_valid }
:projet => Factory.create(:project)).should be_valid }
describe "plus 1" do
let(:project) { Factory(:project) }

View file

@ -1,5 +1,40 @@
require 'spec_helper'
describe Milestone do
pending "add some examples to (or delete) #{__FILE__}"
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 }
let(:milestone) { Factory :milestone, :project => project }
let(:issue) { Factory :issue, :project => project }
it { milestone.should be_valid }
describe "Issues" do
before do
milestone.issues << issue
end
it { milestone.percent_complete.should == 0 }
it do
issue.update_attributes :closed => true
milestone.percent_complete.should == 100
end
end
describe :expires_at do
before do
milestone.update_attributes :due_date => Date.today + 1.day
end
it { milestone.expires_at.should_not be_nil }
end
end