require "spec_helper" RSpec.describe "bitwise and" do let(:timeout) { 0 } subject { Code.evaluate(input, timeout: timeout).to_s } [["1 & 1", "1"]].each do |input, output| context input do let(:input) { input } it { expect(subject).to eq(output) } end end end