8 lines
152 B
Ruby
8 lines
152 B
Ruby
|
describe Logic::EmptyOperator do
|
||
|
include Logic
|
||
|
|
||
|
describe '#compute' do
|
||
|
it { expect(empty_operator(empty, empty).compute).to be true }
|
||
|
end
|
||
|
end
|