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

@ -1,23 +1,9 @@
require 'spec_helper'
describe MergeRequest 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(:target_branch) }
it { should validate_presence_of(:source_branch) }
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 { MergeRequest.should respond_to :closed }
it { MergeRequest.should respond_to :opened }
end
describe 'modules' do