summaryrefslogtreecommitdiff
path: root/spec/models/project_services/chat_service_spec.rb
blob: e6314a43501a08ac7f795259861302fe3edc2a12 (plain)
1
2
3
4
5
6
7
8
require 'spec_helper'

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