2022-09-09 15:36:50 +02:00
|
|
|
describe Logic::IncludeOperator do
|
|
|
|
include Logic
|
|
|
|
|
|
|
|
let(:champ) { create(:champ_multiple_drop_down_list, value: '["val1", "val2"]') }
|
|
|
|
|
|
|
|
describe '#compute' do
|
|
|
|
it { expect(ds_include(champ_value(champ.stable_id), constant('val1')).compute([champ])).to be(true) }
|
|
|
|
it { expect(ds_include(champ_value(champ.stable_id), constant('something else')).compute([champ])).to be(false) }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#errors' do
|
2022-09-26 21:11:43 +02:00
|
|
|
it { expect(ds_include(champ_value(champ.stable_id), constant('val1')).errors([champ.type_de_champ])).to be_empty }
|
2022-09-14 10:43:18 +02:00
|
|
|
it do
|
|
|
|
expected = {
|
|
|
|
right: constant('something else'),
|
|
|
|
stable_id: champ.stable_id,
|
|
|
|
type: :not_included
|
|
|
|
}
|
|
|
|
|
2022-09-26 21:11:43 +02:00
|
|
|
expect(ds_include(champ_value(champ.stable_id), constant('something else')).errors([champ.type_de_champ])).to eq([expected])
|
2022-09-14 10:43:18 +02:00
|
|
|
end
|
|
|
|
|
2022-09-26 21:11:43 +02:00
|
|
|
it { expect(ds_include(constant(1), constant('val1')).errors([])).to eq([{ type: :required_list }]) }
|
2022-09-09 15:36:50 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
describe '#==' do
|
|
|
|
it { expect(ds_include(champ_value(champ.stable_id), constant('val1'))).to eq(ds_include(champ_value(champ.stable_id), constant('val1'))) }
|
|
|
|
end
|
|
|
|
end
|