2011-11-28 08:39:43 +01:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe MergeRequest do
|
2011-11-28 22:24:08 +01:00
|
|
|
describe "Validation" do
|
|
|
|
it { should validate_presence_of(:target_branch) }
|
|
|
|
it { should validate_presence_of(:source_branch) }
|
|
|
|
end
|
|
|
|
|
2012-08-29 07:52:19 +02:00
|
|
|
describe 'modules' do
|
|
|
|
it { should include_module(IssueCommonality) }
|
|
|
|
it { should include_module(Upvote) }
|
2012-08-09 19:45:12 +02:00
|
|
|
end
|
2011-11-28 08:39:43 +01:00
|
|
|
end
|