Add more coverage for model validations and associations

This commit is contained in:
Robert Speicher 2012-08-29 11:36:02 -04:00
parent 2bdea8651f
commit 97423a0bed
12 changed files with 96 additions and 50 deletions

View file

@ -2,21 +2,11 @@ require 'spec_helper'
describe Issue do
describe "Associations" 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
it { should validate_presence_of(:title) }
it { should validate_presence_of(:author_id) }
it { should validate_presence_of(:project_id) }
end
describe "Scope" do
it { Issue.should respond_to :closed }
it { Issue.should respond_to :opened }
it { should ensure_length_of(:description).is_within(0..2000) }
end
describe 'modules' do