gitlabhq/spec/models/service_hook_spec.rb

21 lines
442 B
Ruby
Raw Normal View History

2012-11-19 21:14:05 +03:00
# == Schema Information
#
# Table name: web_hooks
#
# id :integer not null, primary key
# url :string(255)
# project_id :integer
# created_at :datetime not null
# updated_at :datetime not null
# type :string(255) default("ProjectHook")
2012-11-20 14:19:55 +02:00
# service_id :integer
2012-11-19 21:14:05 +03:00
#
require "spec_helper"
describe ServiceHook do
describe "Associations" do
it { should belong_to :service }
end
end