gitlab-org--gitlab-foss/spec/models/project_services/chat_service_spec.rb
2016-12-15 11:09:31 -02:00

8 lines
227 B
Ruby

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