summaryrefslogtreecommitdiff
path: root/spec/models/operations/feature_flags_client_spec.rb
blob: 05988d676f381d22283ffb99b3ee6dca60552700 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Operations::FeatureFlagsClient do
  subject { create(:operations_feature_flags_client) }

  describe 'associations' do
    it { is_expected.to belong_to(:project) }
  end

  describe 'validations' do
    it { is_expected.to validate_presence_of(:project) }
  end

  describe '#token' do
    it "ensures that token is always set" do
      expect(subject.token).not_to be_empty
    end
  end
end