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

describe Feature, lib: true do
  describe '.get' do
    let(:feature) { double(:feature) }
    let(:key) { 'my_feature' }

    it 'returns the Flipper feature' do
      expect_any_instance_of(Flipper::DSL).to receive(:feature).with(key).
        and_return(feature)

      expect(described_class.get(key)).to be(feature)
    end
  end

  describe '.all' do
    let(:features) { Set.new }

    it 'returns the Flipper features as an array' do
      expect_any_instance_of(Flipper::DSL).to receive(:features).
        and_return(features)

      expect(described_class.all).to eq(features.to_a)
    end
  end
end