Skip to content

Commit

Permalink
Updated fractional flag test
Browse files Browse the repository at this point in the history
  • Loading branch information
augustinasrce committed Aug 28, 2024
1 parent 83b2c97 commit dfae78d
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -123,17 +123,17 @@

it do
fetch_value_with_targeting_key = ->(targeting_key) do
client.fetch_boolean_value(
client.fetch_string_value(
flag_key: "color-palette-experiment",
default_value: "#b91c1c",
evaluation_context: OpenFeature::SDK::EvaluationContext.new(targeting_key: targeting_key)
)
end

initial_value = fetch_value_with_targeting_key.call("123")
(0..2).to_a.each do # try with 1000
expect(fetch_value_with_targeting_key.call("123")).to eq(initial_value)
end
expect(fetch_value_with_targeting_key.call("1234")).to eq("#b91c1c")
expect(fetch_value_with_targeting_key.call("qwe")).to eq("#0284c7")
expect(fetch_value_with_targeting_key.call("abcd")).to eq("#16a34a")
expect(fetch_value_with_targeting_key.call("rfv")).to eq("#b91c1c")
end
end

Expand Down

0 comments on commit dfae78d

Please sign in to comment.