2014-09-02 18:07:02 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
describe DeployKey, :mailer do
|
2014-09-02 18:07:02 +05:30
|
|
|
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
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
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
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|