2014-09-02 18:07:02 +05:30
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: keys
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# user_id :integer
|
|
|
|
# created_at :datetime
|
|
|
|
# updated_at :datetime
|
|
|
|
# key :text
|
|
|
|
# title :string(255)
|
|
|
|
# type :string(255)
|
|
|
|
# fingerprint :string(255)
|
2015-09-11 14:41:01 +05:30
|
|
|
# public :boolean default(FALSE), not null
|
2014-09-02 18:07:02 +05:30
|
|
|
#
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2015-12-23 02:04:40 +05:30
|
|
|
describe DeployKey, models: true do
|
2014-09-02 18:07:02 +05:30
|
|
|
let(:project) { create(:project) }
|
|
|
|
let(:deploy_key) { create(:deploy_key, projects: [project]) }
|
|
|
|
|
|
|
|
describe "Associations" do
|
2015-04-26 12:48:37 +05:30
|
|
|
it { is_expected.to have_many(:deploy_keys_projects) }
|
|
|
|
it { is_expected.to have_many(:projects) }
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
end
|