Я пытаюсь выполнить код rspec, переданный процессу Ruby, в виде строки. Как я могу выполнить rspec из процесса Ruby, а не из командной строки и получить результаты?
# Ruby code
code = '
#solution
class User
def in_role?(role)
true
end
end
#Tests to pass
describe User do
it "should be in any roles assigned to it" do
user = User.new
user.should be_in_role("assigned role")
end
end
'
# spec code
# numExamples = examples
# numFailures = failures