Displaying 2 results from an estimated 2 matches for "delete_job".
2008 Apr 01
2
Functional Testing - page actions
Pretty simple question, I''ve tried to ajaxify some actions and the first
one I did was a delete -
def delete_job
.....
render :update do |page|
page.remove "job_#{id}"
end
....
end
and in my functional test I call this function via post
def test....
post :delete_job, :id => 1
assert_response :success
......
end
after the assert_response, how do I test that the page is deleting the
job /...
2006 Aug 24
3
A new QueueWorker class
...otal number that may exist at once.
There are three components:
1) queue_worker.rb: The singleton worker that manages the child workers.
You probably want to auto start this. Make sure you give it
:singleton=>true. Read this file for the methods to interact with your
children. (ie. queue_job(), delete_job(), job_progress() )
2) backgroundrb_rails_queue.rb: The super class for the "child workers"
(and uses backgroundrb_rails.rb in turn). This file needs to be included
in background.rb
3) Your child worker, which should be a subclass of
BackgrounDRb::RailsQueue, is otherwise the about same...