Welcome to mirror list, hosted at ThFree Co, Russian Federation.

chat_service_spec.rb « project_services « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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