Found this simple way to run a separate process in Sinatra: Run background process in Sinatra
get '/start_process'
@@pid = Process.spawn('external_command_to_run')
end
How would you test this in RSpec?
Ruby 1.9.3.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Extract a class which does the background processing and unit-test it. Then test expectation that your action invokes method on this class
Some “pseudocode”: