debian-mirror-gitlab/spec/lib/constraints/feature_constrainer_spec.rb
2020-08-09 17:44:08 +05:30

17 lines
460 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
RSpec.describe Constraints::FeatureConstrainer do
describe '#matches' do
it 'calls Feature.enabled? with the correct arguments' do
gate = stub_feature_flag_gate("an object")
expect(Feature).to receive(:enabled?)
.with(:feature_name, gate, default_enabled: true)
described_class.new(:feature_name, gate, default_enabled: true).matches?(double('request'))
end
end
end