debian-mirror-gitlab/spec/models/project_services/emails_on_push_service_spec.rb
2019-07-07 11:18:12 +05:30

23 lines
466 B
Ruby

# frozen_string_literal: true
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