mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-11 05:36:07 +10:00
12 lines
203 B
Ruby
12 lines
203 B
Ruby
require 'spec_helper'
|
|
|
|
describe GitHook do
|
|
describe "Associations" do
|
|
it { should belong_to(:project) }
|
|
end
|
|
|
|
describe "Validation" do
|
|
it { should validate_presence_of(:project) }
|
|
end
|
|
end
|