2019-03-30 03:23:56 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-05-06 08:09:26 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2017-08-02 12:43:51 -04:00
|
|
|
describe DeployKey, :mailer do
|
2013-05-06 08:09:26 -04:00
|
|
|
describe "Associations" do
|
2015-02-12 13:17:35 -05:00
|
|
|
it { is_expected.to have_many(:deploy_keys_projects) }
|
|
|
|
it { is_expected.to have_many(:projects) }
|
2013-05-06 08:09:26 -04:00
|
|
|
end
|
2016-11-18 06:09:03 -05:00
|
|
|
|
|
|
|
describe 'notification' do
|
|
|
|
let(:user) { create(:user) }
|
|
|
|
|
|
|
|
it 'does not send a notification' do
|
|
|
|
perform_enqueued_jobs do
|
|
|
|
create(:deploy_key, user: user)
|
|
|
|
end
|
|
|
|
|
|
|
|
should_not_email(user)
|
|
|
|
end
|
|
|
|
end
|
2018-03-28 12:54:15 -04:00
|
|
|
|
|
|
|
describe '#user' do
|
|
|
|
let(:deploy_key) { create(:deploy_key) }
|
|
|
|
let(:user) { create(:user) }
|
|
|
|
|
|
|
|
context 'when user is set' do
|
|
|
|
before do
|
|
|
|
deploy_key.user = user
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns the user' do
|
|
|
|
expect(deploy_key.user).to be(user)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when user is not set' do
|
|
|
|
it 'returns the ghost user' do
|
|
|
|
expect(deploy_key.user).to eq(User.ghost)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2013-05-06 08:09:26 -04:00
|
|
|
end
|