summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/chat_spec.rb
blob: a9df35ace98e6e00a0e375be50c11b67c68c6c36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::Chat, :use_clean_rails_memory_store_caching do
  describe '.available?' do
    it 'returns true when the chatops feature is available' do
      stub_feature_flags(chatops: true)

      expect(described_class).to be_available
    end

    it 'returns false when the chatops feature is not available' do
      stub_feature_flags(chatops: false)

      expect(described_class).not_to be_available
    end
  end
end