# I am calling BackgroundRB from a test:
job_key = MiddleMan.new_worker(:class => :book_import_worker,
:args => {:filename => filename,
:section_id => 1})
# Then in background RB, I am trying to assign :filename value to @filename
# and :section_id to @section_id....
# What don't I grok here? All of the following didn't work:
defdo_work(filename, section_id)@filename = filename
@section_id = section_id
....
enddefdo_work(*args)@filename = args[0].values
@section_id = args[1].values
....
end