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