Answer the question
In order to leave comments, you need to log in
Load/Stress/Performance test framework on ruby?
Dear habrazhiteli and residents, at work I had to face the following question: Is there a framework for load testing implemented in Ruby (with the condition that this framework is implemented not in ruby on rails, but in ruby)?
After a short study, it was believed that those currently do not exist.
Answer the question
In order to leave comments, you need to log in
What exactly to test?
You can simply wrap the specs in a benchmark and get performance testing
describe Foo do
context 'performance' do
it 'takes time' do
Benchmark.bm do |bm|
bm.report("test1") {10000.times do; do_something; end }
end
end
end
end
What is the reason for such a requirement for the language?
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question