How to test background process in RSpec?

痴心易碎 提交于 2019-12-12 04:33:37

问题


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.


回答1:


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":

before do
  MyWorker.should_receive(:perform)
end

specify { get :something }


来源:https://stackoverflow.com/questions/13773659/how-to-test-background-process-in-rspec

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!