rcircuit/spec/and_spec.rb
2018-07-10 08:52:34 -05:00

13 lines
208 B
Ruby

describe AndGate do
it "should AND together all inputs" do
table=[
[0,0,0],
[0,1,0],
[1,0,0],
[1,1,1],
]
ok=AndGate.test_table(table)
expect(ok).to eq true
end
end