gitlab-org--gitlab-foss/spec/models/project_services/chat_notification_service_s...

12 lines
253 B
Ruby

require 'spec_helper'
describe ChatNotificationService, models: true do
describe "Associations" do
before do
allow(subject).to receive(:activated?).and_return(true)
end
it { is_expected.to validate_presence_of :webhook }
end
end