rcircuit/spec/not_spec.rb

11 lines
163 B
Ruby
Raw Normal View History

2018-07-10 08:03:40 -05:00
describe NotGate do
it "should NOT the input" do
table=[
[0,1],
[1,0]
]
ok=NotGate.test_table(table)
expect(ok).to eq true
end
end