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