From 2e8d0153cd6bed87fa55255ef11fda7152b2bcaf Mon Sep 17 00:00:00 2001 From: Bob Van Landuyt Date: Fri, 14 Dec 2018 14:27:26 +0100 Subject: Pass on arguments passed to the FeatureConstrainer All arguments passed to the `FeatureConstrainer` will be passed on to the `Feature.enabled?` check. --- spec/lib/constraints/feature_constrainer_spec.rb | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 spec/lib/constraints/feature_constrainer_spec.rb (limited to 'spec/lib/constraints') diff --git a/spec/lib/constraints/feature_constrainer_spec.rb b/spec/lib/constraints/feature_constrainer_spec.rb new file mode 100644 index 00000000000..42efc164f81 --- /dev/null +++ b/spec/lib/constraints/feature_constrainer_spec.rb @@ -0,0 +1,11 @@ +require 'spec_helper' + +describe Constraints::FeatureConstrainer do + describe '#matches' do + it 'calls Feature.enabled? with the correct arguments' do + expect(Feature).to receive(:enabled?).with(:feature_name, "an object", default_enabled: true) + + described_class.new(:feature_name, "an object", default_enabled: true).matches?(double('request')) + end + end +end -- cgit v1.2.3