gitlab-org--gitlab-foss/spec/models/project_services/emails_on_push_service_spec.rb

22 lines
435 B
Ruby

require 'spec_helper'
describe EmailsOnPushService do
describe 'Validations' do
context 'when service is active' do
before do
subject.active = true
end
it { is_expected.to validate_presence_of(:recipients) }
end
context 'when service is inactive' do
before do
subject.active = false
end
it { is_expected.not_to validate_presence_of(:recipients) }
end
end
end