summaryrefslogtreecommitdiff
path: root/spec/models/project_services/chat_notification_service_spec.rb
blob: c98e7ee14fdf76cd2bd7b694f52a07164ffc4bf3 (plain)
1
2
3
4
5
6
7
8
9
10
11
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