20 lines
419 B
Ruby
20 lines
419 B
Ruby
|
# == 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")
|
||
|
#
|
||
|
|
||
|
require "spec_helper"
|
||
|
|
||
|
describe ServiceHook do
|
||
|
describe "Associations" do
|
||
|
it { should belong_to :service }
|
||
|
end
|
||
|
end
|