summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/chat_spec.rb
blob: d61c4b36668611912fde6ff347bf92062253a4aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require 'spec_helper'

describe Gitlab::Chat, :use_clean_rails_memory_store_caching do
  describe '.available?' do
    it 'returns true when the chatops feature is available' do
      allow(Feature)
        .to receive(:enabled?)
        .with(:chatops, default_enabled: true)
        .and_return(true)

      expect(described_class).to be_available
    end

    it 'returns false when the chatops feature is not available' do
      allow(Feature)
        .to receive(:enabled?)
        .with(:chatops, default_enabled: true)
        .and_return(false)

      expect(described_class).not_to be_available
    end
  end
end