17 lines
586 B
Ruby
17 lines
586 B
Ruby
describe Logic do
|
|
include Logic
|
|
|
|
it 'serializes deserializes' do
|
|
expect(Logic.from_h(constant(1).to_h)).to eq(constant(1))
|
|
expect(Logic.from_json(constant(1).to_json)).to eq(constant(1))
|
|
|
|
expect(Logic.from_h(empty.to_h)).to eq(empty)
|
|
|
|
expect(Logic.from_h(greater_than(constant(1), constant(2)).to_h)).to eq(greater_than(constant(1), constant(2)))
|
|
end
|
|
|
|
describe '.compatible_type?' do
|
|
it { expect(Logic.compatible_type?(constant(true), constant(true))).to be true }
|
|
it { expect(Logic.compatible_type?(constant(1), constant(true))).to be false }
|
|
end
|
|
end
|