Sha256: a6671b51f4f1335cdf64cfc2c4da4d5951a93a28fa542ae026d7837441c5081c
Contents?: true
Size: 830 Bytes
Versions: 3
Compression:
Stored size: 830 Bytes
Contents
require 'helper' describe Flipper::Gates::Group do let(:feature_name) { :search } subject { described_class.new } describe "#open?" do context "with a group in adapter, but not registered" do before do Flipper.register(:staff) { |thing| true } end it "ignores group" do thing = Struct.new(:flipper_id).new('5') subject.open?(thing, Set[:newbs, :staff], feature_name: feature_name).should eq(true) end end context "thing that does not respond to method in group block" do before do Flipper.register(:stinkers) { |thing| thing.stinker? } end it "raises error" do expect { subject.open?(Object.new, Set[:stinkers], feature_name: feature_name) }.to raise_error(NoMethodError) end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
flipper-0.7.0.beta5 | spec/flipper/gates/group_spec.rb |
flipper-0.7.0.beta4 | spec/flipper/gates/group_spec.rb |
flipper-0.7.0.beta3 | spec/flipper/gates/group_spec.rb |