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