2022-06-09 13:48:45 +02:00
|
|
|
describe Logic::Eq do
|
|
|
|
include Logic
|
|
|
|
|
|
|
|
describe '#compute' do
|
|
|
|
it { expect(ds_eq(constant(1), constant(1)).compute).to be(true) }
|
|
|
|
it { expect(ds_eq(constant(1), constant(2)).compute).to be(false) }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#errors' do
|
|
|
|
it { expect(ds_eq(constant(true), constant(true)).errors).to be_empty }
|
2022-09-14 10:43:18 +02:00
|
|
|
it do
|
|
|
|
expected = {
|
|
|
|
operator_name: "Logic::Eq",
|
|
|
|
right: constant(1),
|
|
|
|
stable_id: nil,
|
|
|
|
type: :incompatible
|
|
|
|
}
|
|
|
|
expect(ds_eq(constant(true), constant(1)).errors).to eq([expected])
|
|
|
|
end
|
2023-04-25 19:53:06 +02:00
|
|
|
|
|
|
|
it do
|
|
|
|
multiple_drop_down = create(:type_de_champ_multiple_drop_down_list)
|
|
|
|
first_option = multiple_drop_down.drop_down_list_enabled_non_empty_options.first
|
|
|
|
|
|
|
|
expected = {
|
|
|
|
operator_name: "Logic::Eq",
|
|
|
|
stable_id: multiple_drop_down.stable_id,
|
|
|
|
type: :required_include
|
|
|
|
}
|
|
|
|
|
|
|
|
expect(ds_eq(champ_value(multiple_drop_down.stable_id), constant(first_option)).errors([multiple_drop_down])).to eq([expected])
|
|
|
|
end
|
2022-06-09 13:48:45 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
describe '#==' do
|
|
|
|
it { expect(ds_eq(constant(true), constant(false))).to eq(ds_eq(constant(false), constant(true))) }
|
|
|
|
end
|
|
|
|
end
|