debian-mirror-gitlab/spec/models/project_services/emails_on_push_service_spec.rb
2016-06-02 11:05:42 +05:30

17 lines
401 B
Ruby

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