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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
RSpec.describe Flipper::UI::Decorators::Feature do
let(:source) { {} }
let(:adapter) { Flipper::Adapters::Memory.new(source) }
let(:flipper) { build_flipper }
let(:feature) { flipper[:some_awesome_feature] }
subject do
described_class.new(feature)
end
describe '#initialize' do
it 'sets the feature' do
expect(subject.feature).to be(feature)
end
end
describe '#pretty_name' do
it 'capitalizes each word separated by underscores' do
expect(subject.pretty_name).to eq('Some Awesome Feature')
end
end
describe '#<=>' do
let(:on) do
flipper.enable(:on_a)
described_class.new(flipper[:on_a])
end
let(:on_b) do
flipper.enable(:on_b)
described_class.new(flipper[:on_b])
end
let(:conditional) do
flipper.enable_percentage_of_time :conditional_a, 5
described_class.new(flipper[:conditional_a])
end
let(:off) do
described_class.new(flipper[:off_a])
end
it 'sorts :on before :conditional' do
expect((on <=> conditional)).to be(-1)
end
it 'sorts :on before :off' do
expect((on <=> off)).to be(-1)
end
it 'sorts :conditional before :off' do
expect((conditional <=> off)).to be(-1)
end
it 'sorts on key for identical states' do
expect((on <=> on_b)).to be(-1)
end
end
end
|